blob: 8c0477ccec2095ed228868079d8273fe373f6986 [file] [log] [blame]
func throwingFunc() throws {
return
}
func foo() {
do {
try throwingFunc()
} catch {
<#code#>
}
}