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