Files
kotlin-fork/js/js.translator/testData/reservedWords/cases/enumEntrySwitch.kt
T
2015-12-10 21:26:41 +03:00

13 lines
221 B
Kotlin
Vendored

package foo
// NOTE THIS FILE IS AUTO-GENERATED by the generateTestDataForReservedWords.kt. DO NOT EDIT!
enum class Foo {
switch
}
fun box(): String {
testNotRenamed("switch", { Foo.switch })
return "OK"
}