Files
kotlin-fork/compiler/testData/resolvedCalls/arguments/realExamples/emptyMutableList.kt
T
2014-12-16 17:33:21 +03:00

9 lines
130 B
Kotlin
Vendored

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