9 lines
125 B
Kotlin
9 lines
125 B
Kotlin
class A {}
|
|
|
|
fun <T> foo(t: T) {}
|
|
|
|
fun <T> emptyList(): List<T> = throw Exception()
|
|
|
|
fun bar() {
|
|
<caret>foo(emptyList())
|
|
} |