05c662ec55
This fixes smart step into for delegated member functions. Additionally, we align on the string "memberFunctionName(...)" for expression non-null checks for both JVM_IR and JVM backends.
10 lines
145 B
Kotlin
Vendored
10 lines
145 B
Kotlin
Vendored
// TARGET_BACKEND: JVM_IR
|
|
interface B {
|
|
fun getX() = 1
|
|
}
|
|
|
|
interface D {
|
|
val x: Int
|
|
}
|
|
|
|
class <!ACCIDENTAL_OVERRIDE!>C(d: D)<!> : D by d, B |