Avatar
func foo(x: Int...) { print(x) } let _foo = foo as Any as? ([Int]) -> Void _foo?([1,2,3]) いったん Any 通すと大丈夫っていう。