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

7 lines
97 B
Kotlin
Vendored

// FIR_IDENTICAL
fun foo(f: Boolean): Int {
val i: Int
if (f) {}
i = 3
return i
}