(err *Error)
| 269 | } |
| 270 | |
| 271 | func ExampleError_StackFrames(err *Error) { |
| 272 | for _, frame := range err.StackFrames() { |
| 273 | fmt.Println(frame.File, frame.LineNumber, frame.Package, frame.Name) |
| 274 | } |
| 275 | } |
| 276 | |
| 277 | func a() error { |
| 278 | b(5) |
nothing calls this directly
no test coverage detected
searching dependent graphs…