Files
kotlin-fork/compiler/fir/analysis-tests/testData/resolveWithStdlib/j+k/OverrideWithJava.fir.txt
T
2022-12-14 21:46:41 +00:00

21 lines
423 B
Plaintext
Vendored

FILE: test.kt
public final class B : R|A| {
public constructor(): R|B| {
super<R|A|>()
}
public open override fun foo(): R|B| {
^foo this@R|/B|
}
public final fun bar(): R|B| {
^bar this@R|/B|
}
public final fun test(): R|kotlin/Unit| {
this@R|/B|.R|/B.foo|()
this@R|/B|.R|/B.bar|()
}
}