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

9 lines
123 B
Kotlin
Vendored

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