Files
kotlin-fork/compiler/fir/analysis-tests/testData/resolve/defaultParametersInheritedToJava.txt
T
Denis Zharkov 4c9a4548f2 FIR: Fix overrides binding for Java inheritor
`overriddenMembers` contract requires original (non-enhanced) function
See other usages

Ignored tests have been working accidentally

^KT-43289 Open
2020-11-16 15:50:39 +03:00

14 lines
364 B
Plaintext
Vendored

FILE: main.kt
public final fun foo(j: R|MyJavaClass|): R|kotlin/Unit| {
R|<local>/j|.R|/MyJavaClass.bar|()
}
public abstract class MyClass : R|kotlin/Any| {
public constructor(): R|MyClass| {
super<R|kotlin/Any|>()
}
public open fun bar(y: R|kotlin/String?| = Null(null)): R|kotlin/Unit| {
}
}