Avatar
let x: (Int...) -> Int? = { (a: Int...) in return a.first } typealias Fn = ([Int]) -> Int? x as? Fn // nil 謎いw