29ab166e1b
Render resolved call to a separate file
7 lines
91 B
Kotlin
7 lines
91 B
Kotlin
// !CALL: foo
|
|
|
|
fun <T> foo(f: (T) -> String) {}
|
|
|
|
fun test() {
|
|
foo { (x: Int) -> "$x"}
|
|
} |