(at, depth int)
| 17 | } |
| 18 | |
| 19 | func yesErrors(at, depth int) error { |
| 20 | if at >= depth { |
| 21 | return New("ye error") |
| 22 | } |
| 23 | return yesErrors(at+1, depth) |
| 24 | } |
| 25 | |
| 26 | // GlobalE is an exported global to store the result of benchmark results, |
| 27 | // preventing the compiler from optimising the benchmark functions away. |
no test coverage detected
searching dependent graphs…