Files
kotlin-fork/idea/testData/fir/multiModule/overrideWithJava/jvm/B.txt
T
2019-08-30 11:47:33 +03:00

21 lines
421 B
Plaintext
Vendored

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