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

8 lines
137 B
Kotlin
Vendored

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