Files
kotlin-fork/compiler/testData/diagnostics/tests/regressions/AssignmentsUnderOperators.fir.kt
T

7 lines
120 B
Kotlin
Vendored

fun test() {
var a : Any? = null
if (a is Any) else a = null;
while (a is Any) a = null
while (true) a = null
}