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