11 lines
148 B
Kotlin
Vendored
11 lines
148 B
Kotlin
Vendored
// EXPECTED_REACHABLE_NODES: 1280
|
|
|
|
inline fun foo() = (object : II {}).ok()
|
|
|
|
fun box() = foo()
|
|
|
|
interface I {
|
|
fun ok() = "OK"
|
|
}
|
|
|
|
interface II: I |