Files
kotlin-fork/compiler/testData/diagnostics/tests/varargs/varargsAndFunctionLiterals.kt
T
2013-01-31 18:54:37 +04:00

13 lines
160 B
Kotlin
Vendored

fun f(vararg <!UNUSED_PARAMETER!>t<!> : Int, <!UNUSED_PARAMETER!>f<!> : ()->Unit) {
}
fun test() {
f {}
f() {}
f(1) {
}
f(1, 2) {
}
}