blob: 4ab08b78edbf0e6d10b3741dbdbbe0e6c9e6715d [file] [log] [blame]
func throwingFunc() throws -> [Int] {
return []
}
do {
for num in try throwingFunc() {
let _ = num
}
} catch {
<#code#>
}