blob: 32fec5d064a174babfce4ee86bec5d50f5c1d13b [file] [log] [blame]
// "Make variable mutable" "true"
fun exec(f: () -> Unit) = f()
fun foo() {
val x: Int
exec {
<caret>x = 42
}
}