1d90b2e1fe
- Do not wrap parameters with '()' - Do not set return type for them - Fix existing testData
5 lines
226 B
Kotlin
Vendored
5 lines
226 B
Kotlin
Vendored
fun test() {
|
|
SamTest.test(Foo<String, Int> { s, n -> "" })
|
|
SamTest.test(Foo { s: MutableList<X<Int>>, n: X<MutableSet<String>> -> "" })
|
|
SamTest.test(Foo { s: MutableList<X<Int>>, n: X<MutableSet<String>> -> "" })
|
|
} |