20 lines
276 B
Plaintext
20 lines
276 B
Plaintext
class A {}
|
|
|
|
fun foo(a: A) {}
|
|
|
|
fun bar() {
|
|
<caret>foo(A())
|
|
}
|
|
|
|
|
|
Resolved call:
|
|
|
|
Resulting descriptor: fun foo(a: A): Unit
|
|
|
|
Explicit receiver kind = NO_EXPLICIT_RECEIVER
|
|
This object = NO_RECEIVER
|
|
Receiver argument = NO_RECEIVER
|
|
|
|
Value arguments mapping:
|
|
|
|
SUCCESS a : A = A() |