23 lines
389 B
Kotlin
Vendored
23 lines
389 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"
|
|
} |