Files
kotlin-fork/js/js.translator/testData/reservedWords/cases/insideClassObjectLabelNull.kt
T
2015-04-29 16:50:22 +02:00

19 lines
333 B
Kotlin
Vendored

package foo
// NOTE THIS FILE IS AUTO-GENERATED by the generateTestDataForReservedWords.kt. DO NOT EDIT!
class TestClass {
companion object {
val t: Int = 0
fun test() {
testRenamed("null", { `null`@ while (false) {} })
}
}
}
fun box(): String {
TestClass.test()
return "OK"
}