Files
kotlin-fork/js/js.translator/testData/reservedWords/cases/enumFunContinue.kt
T
2015-04-29 16:50:22 +02:00

18 lines
307 B
Kotlin

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