Files
kotlin-fork/js/js.translator/testData/reservedWords/cases/insideClassLabelUndefined.kt
T
2014-09-26 00:57:09 +04:00

17 lines
298 B
Kotlin

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