12 lines
153 B
Kotlin
Vendored
12 lines
153 B
Kotlin
Vendored
// EXPECTED_REACHABLE_NODES: 1287
|
|
class A
|
|
|
|
class B {
|
|
val A.x: String
|
|
get() = "OK"
|
|
|
|
fun result(a: A) = a.x
|
|
}
|
|
|
|
fun box() = B().result(A())
|