Files
kotlin-fork/js/js.translator/testData/reservedWords/cases/enumFunFunction.kt
T
2015-09-22 15:00:38 +02:00

22 lines
316 B
Kotlin
Vendored

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