mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-11 08:31:30 +00:00
11 lines
182 B
Kotlin
Vendored
11 lines
182 B
Kotlin
Vendored
package test
|
|
|
|
import delegates.*
|
|
import util.*
|
|
|
|
fun f() {
|
|
val d = D(C("", 0), object : T2 {})
|
|
d.anotherFun()
|
|
d.<error>invalidFun</error>()
|
|
WithDelegatedProperty().i
|
|
} |