Files
kotlin-fork/compiler/testData/diagnostics/tests/varargs/varargsAndFunctionLiterals.fir.kt
T

13 lines
114 B
Kotlin
Vendored

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