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

18 lines
287 B
Kotlin
Vendored

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