4c04ad2371
Before this commit, such descriptors have null owners, which causes problems when the getter of the owner property is called.
11 lines
114 B
Kotlin
Vendored
11 lines
114 B
Kotlin
Vendored
interface A {
|
|
val str: String
|
|
get() = "OK"
|
|
}
|
|
|
|
interface B : A
|
|
|
|
class Impl : B
|
|
|
|
fun box() = Impl().str
|