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

11 lines
171 B
Kotlin
Vendored

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