blob: 3247ee76e19e10182fcf1722ad9241ab034dc32c [file] [log] [blame]
package testing
interface I {
val <caret>p: Int
get() = 0
}
class A(i: I) : I by i
class B(i: I) : I by i {
override val p = 5
}
class C(i: I) : I by i
// REF: (in testing.B).p