29ab166e1b
Render resolved call to a separate file
10 lines
97 B
Kotlin
10 lines
97 B
Kotlin
// !CALL: foo
|
|
|
|
class A {}
|
|
class B {}
|
|
|
|
fun foo(a: A, b: B) {}
|
|
|
|
fun bar() {
|
|
foo(b = B(), A())
|
|
} |