Files
kotlin-fork/js/js.translator/testData/reservedWords/cases/enumLabelIf.kt
T
2015-08-10 16:24:08 +03:00

18 lines
290 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("if", { `if`@ while (false) {} })
}
}
fun box(): String {
Foo.BAR.test()
return "OK"
}