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

9 lines
132 B
Kotlin

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