3b3fd0fa0d
The size has increased due to new implementation of KClass
10 lines
123 B
Kotlin
Vendored
10 lines
123 B
Kotlin
Vendored
// EXPECTED_REACHABLE_NODES: 1120
|
|
interface I {
|
|
fun foo() = "OK"
|
|
}
|
|
|
|
interface J : I
|
|
|
|
class A : J
|
|
|
|
fun box() = A().foo() |