29ab166e1b
Render resolved call to a separate file
9 lines
75 B
Kotlin
9 lines
75 B
Kotlin
// !CALL: foo
|
|
|
|
class A {}
|
|
|
|
fun <T> foo(t: T) {}
|
|
|
|
fun bar() {
|
|
foo(A())
|
|
} |