Files
kotlin-fork/compiler/testData/resolvedCalls/arguments/namedArguments/positionedAfterNamed.kt
T
Svetlana Isakova 29ab166e1b Refactoring: AbstractResolvedCallsTest
Render resolved call to a separate file
2014-07-08 14:48:19 +04:00

10 lines
97 B
Kotlin

// !CALL: foo
class A {}
class B {}
fun foo(a: A, b: B) {}
fun bar() {
foo(b = B(), A())
}