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

15 lines
132 B
Kotlin
Vendored

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