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

19 lines
347 B
Kotlin
Vendored

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