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

19 lines
335 B
Kotlin
Vendored

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