Files
kotlin-fork/compiler/testData/diagnostics/tests/reassignment/else.fir.kt
T

11 lines
143 B
Kotlin
Vendored

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