Files
kotlin-fork/compiler/fir/analysis-tests/testData/resolve/cfa/smartcastOnThisDuringClassInitialization.fir.txt
T
2023-03-02 10:32:07 +00:00

18 lines
434 B
Plaintext
Vendored

FILE: smartcastOnThisDuringClassInitialization.kt
public abstract interface I : R|kotlin/Any| {
}
public open class Some : R|kotlin/Any| {
public constructor(): R|Some| {
super<R|kotlin/Any|>()
}
public final val x: R|kotlin/Int|
public get(): R|kotlin/Int|
init {
(this@R|/Some| as R|I|)
this@R|/Some|.R|/Some.x| = Int(1)
}
}