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

26 lines
402 B
Kotlin
Vendored

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