26 lines
402 B
Kotlin
Vendored
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"
|
|
}
|