10 lines
118 B
Plaintext
Vendored
10 lines
118 B
Plaintext
Vendored
// "Change to var" "true"
|
|
fun exec(f: () -> Unit) = f()
|
|
|
|
fun foo() {
|
|
var x: Int
|
|
exec {
|
|
x = 42
|
|
}
|
|
}
|