func f() { do { let a: throws Int = foo() let b: throws Int = bar() print(try a + b) } catch { print(error) } }
throws Int