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

23 lines
325 B
Kotlin
Vendored

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