Avatar
// Typed propagation enum FooError: Error { case bar case baz } func foo() throws -> Int { 42 } func main() { do { print(try foo()) } catch { // エラーハンドリング } }