### DelegatedStateSample
```kotlin
// TODO: operator assignment for local delegated properties is currently not supported
// https://github.com/JetBrains/kotlin/blob/11f3c4b03f40460160c1f23b634941a867fd817b/compiler/backend/src/org/jetbrains/kotlin/codegen/StackValue.java#L2268
@Suppress("ReplaceWithOperatorAssignment")
@Composable
fun DelegatedStateSample() {
    var count by remember { mutableStateOf(0) }
    Text(text = "You clicked $count times")
    Button(onClick = { count = count + 1 }) { Text("Click me") }
}
```