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

14 lines
288 B
Plaintext
Vendored

FILE: TwoDeclarationsInSameFile.kt
public open class A : R|kotlin/Any| {
public constructor(): R|p/A| {
super<R|kotlin/Any|>()
}
}
public final class B : R|p/A| {
public constructor(): R|p/B| {
super<R|p/A|>()
}
}