7 lines
135 B
Kotlin
Vendored
7 lines
135 B
Kotlin
Vendored
fun <T> foo(t: T, l: MutableList<T>) {}
|
|
|
|
fun use(vararg a: Any?) = a
|
|
|
|
fun test(ls: MutableList<String>) {
|
|
use(<caret>foo(11, ls))
|
|
} |