Files
kotlin-fork/compiler/testData/resolvedCalls/arguments/realExamples/emptyList.kt
T

9 lines
125 B
Kotlin

class A {}
fun <T> foo(t: T) {}
fun <T> emptyList(): List<T> = throw Exception()
fun bar() {
<caret>foo(emptyList())
}