Files
kotlin-fork/compiler/testData/checker/regression/AssignmentsUnderOperators.jet
T
2011-10-24 13:01:46 +04:00

6 lines
119 B
Plaintext

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