7 lines
126 B
Kotlin
7 lines
126 B
Kotlin
package i
|
|
|
|
fun foo<R, T: List<R>>(r: R, list: T) {}
|
|
|
|
fun test1(i: Int, collection: Collection<Int>) {
|
|
foo(i, collection)
|
|
} |