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

18 lines
292 B
Kotlin
Vendored

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