Files
kotlin-fork/compiler/testData/diagnostics/tests/reassignment/else.kt
T
2021-03-03 12:27:11 +03:00

12 lines
183 B
Kotlin
Vendored

// FIR_IDENTICAL
// !DIAGNOSTICS: -UNUSED_VALUE
fun foo(f: Boolean): Int {
val i: Int
if (f) {}
else {
i = 2
}
<!VAL_REASSIGNMENT!>i<!> = 3
return i
}