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

16 lines
166 B
Kotlin
Vendored

// !DUMP_CFG
interface I
interface S : I {
fun foo()
}
fun s(): S = TODO()
class Main {
private val x: I
init {
x = s()
x.foo()
}
}