Files
kotlin-fork/compiler/testData/diagnostics/tests/regressions/AssignmentsUnderOperators.kt
T
2015-05-19 23:45:59 +03:00

7 lines
139 B
Kotlin
Vendored

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