9 lines
130 B
Kotlin
Vendored
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())
|
|
} |