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

10 lines
131 B
Kotlin
Vendored

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