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

13 lines
162 B
Kotlin
Vendored

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