Avatar
@swift-6.2 enum FooError: Error { case bar } var closure1: ((Int) throws(FooError) -> Int)? closure1 = { _ throws(FooError) in throw .bar }