Avatar
@swift-main var f: (Bool, Int...) -> Void = { a, b in print(a, b) } f(false, 1, 2, 3) // ok