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
254 B
Kotlin
Vendored
10 lines
254 B
Kotlin
Vendored
// !DIAGNOSTICS: -UNUSED_PARAMETER
|
|
// TARGET_BACKEND: JVM_IR
|
|
|
|
interface Foo<T> {
|
|
fun foo(l: List<T>)
|
|
}
|
|
|
|
class <!CONFLICTING_JVM_DECLARATIONS!>Bar(f: Foo<String>)<!>: Foo<String> by f {
|
|
<!CONFLICTING_JVM_DECLARATIONS!>fun foo(l: List<Int>)<!> {}
|
|
} |