mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-12 00:21:32 +00:00
13 lines
128 B
Kotlin
Vendored
13 lines
128 B
Kotlin
Vendored
fun foo() {
|
|
A().getB().f1()<caret>
|
|
}
|
|
|
|
class A {
|
|
fun getB() = B()
|
|
}
|
|
|
|
class B {
|
|
fun f1() {}
|
|
}
|
|
|
|
// EXISTS: getB(), f1() |