Files
kotlin-fork/js/js.translator/testData/reservedWords/cases/enumValFinally.kt
T
2015-12-09 17:10:30 +03:00

18 lines
289 B
Kotlin
Vendored

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