Files
kotlin-fork/compiler/fir/analysis-tests/testData/resolve/arguments/ambiguityOnJavaOverride.txt
T
2020-03-19 09:51:01 +03:00

15 lines
344 B
Plaintext
Vendored

FILE: main.kt
public final class B : R|A| {
public constructor(): R|B| {
super<R|A|>()
}
public final 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|(String())
}