9eeda58747
Fixes bugs which led to BindingContextUtils#descriptorToDeclaration throwing exception
19 lines
222 B
Kotlin
19 lines
222 B
Kotlin
// "Make XX.foo open" "true"
|
|
trait X {
|
|
fun foo()
|
|
}
|
|
|
|
trait XX : X {
|
|
override final fun foo() {
|
|
|
|
}
|
|
}
|
|
|
|
abstract class A(val y: XX) : X, XX by y {
|
|
}
|
|
|
|
class B(y: XX) : A(y) {
|
|
override<caret> fun foo() {
|
|
}
|
|
}
|