func foo() throws(Never) -> Int { 42 } func foo() -> Int { 42 }
func foo() throws(any Error) -> Int { 42 } func foo() throws -> Int { 42 }