Files
kotlin-fork/js/js.translator/testData/reservedWords/cases/insideClassLabelConst.kt
T
2015-09-22 15:00:38 +02:00

21 lines
324 B
Kotlin
Vendored

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