d9c6d38715
- visit over file instead of class
14 lines
195 B
Kotlin
Vendored
14 lines
195 B
Kotlin
Vendored
// EXPECTED_REACHABLE_NODES: 1305
|
|
|
|
private class A {
|
|
private val f = "OK"
|
|
inline fun ii() = f
|
|
}
|
|
|
|
|
|
private class B {
|
|
private val a = A()
|
|
fun foo() = a.ii()
|
|
}
|
|
|
|
fun box() = B().foo() |