23 lines
371 B
Plaintext
23 lines
371 B
Plaintext
class A {}
|
|
|
|
fun foo(a: A) {}
|
|
fun foo(a: A, s: String) {}
|
|
fun foo(a: A, any: Any) {}
|
|
|
|
fun bar() {
|
|
<caret>foo(A(), "")
|
|
}
|
|
|
|
|
|
Resolved call:
|
|
|
|
Resulting descriptor: fun foo(a: A, s: String): Unit
|
|
|
|
Explicit receiver kind = NO_EXPLICIT_RECEIVER
|
|
This object = NO_RECEIVER
|
|
Receiver argument = NO_RECEIVER
|
|
|
|
Value arguments mapping:
|
|
|
|
SUCCESS a : A = A()
|
|
SUCCESS s : String = "" |