10 lines
125 B
Kotlin
Vendored
10 lines
125 B
Kotlin
Vendored
// "Change to var" "true"
|
|
fun exec(f: () -> Unit) = f()
|
|
|
|
fun foo() {
|
|
val x: Int
|
|
exec {
|
|
<caret>x = 42
|
|
}
|
|
}
|