Files
kotlin-fork/compiler/testData/resolvedCalls/arguments/oneArgument/simpleMatch.txt
T
2014-09-01 12:32:52 +04:00

20 lines
300 B
Plaintext

class A {}
fun foo(a: A) {}
fun bar() {
<caret>foo(A())
}
Resolved call:
Resulting descriptor: fun foo(a: A): Unit defined in root package
Explicit receiver kind = NO_EXPLICIT_RECEIVER
This object = NO_RECEIVER
Receiver argument = NO_RECEIVER
Value arguments mapping:
SUCCESS a : A = A()