16 lines
166 B
Kotlin
Vendored
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()
|
|
}
|
|
}
|