29ab166e1b
Render resolved call to a separate file
22 lines
291 B
Plaintext
22 lines
291 B
Plaintext
// !CALL: foo
|
|
|
|
class A {}
|
|
class B {}
|
|
|
|
fun foo(a: A, b: B) {}
|
|
|
|
fun bar() {
|
|
foo(b = B(), A())
|
|
}
|
|
|
|
|
|
Resolved call:
|
|
|
|
Explicit receiver kind = NO_EXPLICIT_RECEIVER
|
|
This object = NO_RECEIVER
|
|
Receiver argument = NO_RECEIVER
|
|
|
|
Value arguments mapping:
|
|
|
|
SUCCESS b : B = B()
|
|
ARGUMENT UNMAPPED: A() |