13 lines
114 B
Kotlin
Vendored
13 lines
114 B
Kotlin
Vendored
fun f(vararg t : Int, f : ()->Unit) {
|
|
}
|
|
|
|
fun test() {
|
|
f {}
|
|
f() {}
|
|
f(1) {
|
|
|
|
}
|
|
f(1, 2) {
|
|
|
|
}
|
|
} |