blob: 1dd8d1b2770a4c01ef5cd17642b43e909470ffee [file] [log] [blame]
open class A {
open fun foo2(): String = "OK"
}
open class B : A() {
}
class C : B() {
inner class D {
val foo: String = super<B>@C.foo2()
}
}
fun box() : String {
val obj = C().D();
return obj.foo
}