Files
kotlin-fork/compiler/testData/resolvedCalls/arguments/oneArgument/simpleMatch.kt
T

7 lines
63 B
Kotlin

class A {}
fun foo(a: A) {}
fun bar() {
<caret>foo(A())
}