bd38363077
To explicitly specify which test are failing
11 lines
142 B
Kotlin
Vendored
11 lines
142 B
Kotlin
Vendored
// "Change to var" "true"
|
|
fun exec(f: () -> Unit) = f()
|
|
|
|
fun foo() {
|
|
val x: Int
|
|
exec {
|
|
<caret>x = 42
|
|
}
|
|
}
|
|
|
|
/* IGNORE_FIR */ |