KT 3492: Bug in bytecode generation for labeled super call from inner class & Property generation refactoring
This commit is contained in:
@@ -0,0 +1,16 @@
|
||||
trait A {
|
||||
open val foo: String
|
||||
get() = "OK"
|
||||
}
|
||||
|
||||
open class B : A {
|
||||
|
||||
}
|
||||
|
||||
class C : B() {
|
||||
inner class D {
|
||||
val foo: String = super<B>@C.foo
|
||||
}
|
||||
}
|
||||
|
||||
fun box() = C().D().foo
|
||||
Reference in New Issue
Block a user