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

21 lines
420 B
Plaintext
Vendored

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