blob: e21b4a4065bcc11fad3ba6541dd793e3ae32a997 [file] [log] [blame]
func throwingFunc() throws -> Int? {
return nil
}
do {
if let val = try throwingFunc() {
let _ = val
}
} catch {
<#code#>
}