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

22 lines
478 B
Plaintext
Vendored

FILE: A.kt
public final class Outer : R|kotlin/Any| {
public constructor(): R|a/Outer| {
super<R|kotlin/Any|>()
}
public open class Nested : R|kotlin/Any| {
public constructor(): R|a/Outer.Nested| {
super<R|kotlin/Any|>()
}
}
}
FILE: B.kt
public final class My : R|a/Outer.Nested| {
public constructor(): R|b/My| {
super<R|a/Outer.Nested|>()
}
}