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

18 lines
286 B
Kotlin
Vendored

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