Files
kotlin-fork/compiler/fir/analysis-tests/testData/resolve/arguments/ambiguityOnJavaOverride.fir.txt
T

15 lines
376 B
Plaintext
Vendored

FILE: main.kt
public final class B : R|A| {
public constructor(): R|B| {
super<R|A|>()
}
protected open override fun foo(s: R|kotlin/String|): R|kotlin/Any?| {
^foo Null(null)
}
}
public final fun test(b: R|B|): R|kotlin/Unit| {
R|<local>/b|.R|/B.foo<HIDDEN: /B.foo is invisible>#|(String())
}