Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
9fc4d94d04f972782fee2dc5b3b25d052d88601a
/
.
/
compiler
/
fir
/
analysis-tests
/
testData
/
resolve
/
TwoDeclarationsInSameFile.fir.txt
blob: 4560afaec7dd1600ea27c87332604caf4a1dcf6d [
file
]
FILE: TwoDeclarationsInSameFile.kt
package p
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|>()
}
}