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