mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-14 00:21:34 +00:00
18 lines
243 B
Plaintext
Vendored
18 lines
243 B
Plaintext
Vendored
object Foo {
|
|
val baz = 42
|
|
}
|
|
|
|
fun test() {
|
|
Foo.<caret>baz
|
|
}
|
|
|
|
|
|
|
|
Resolved call:
|
|
|
|
Resulting descriptor: val baz: Int defined in Foo
|
|
|
|
Explicit receiver kind = DISPATCH_RECEIVER
|
|
Dispatch receiver = Foo {Foo}
|
|
Extension receiver = NO_RECEIVER
|