blob: 28bbad5efb1e441040cdb522178f8dbf463627ed [file] [log] [blame]
func throwingFunc() throws -> Bool {
return true
}
do {
if try throwingFunc() {
let _ = 3
}
} catch {
<#code#>
}