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

17 lines
282 B
Kotlin

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