()
| 18 | impl Error for RootError {} |
| 19 | |
| 20 | fn main() { |
| 21 | let mut report = Report::new(RootError).attach("attachment"); |
| 22 | |
| 23 | let mut escaped: Vec<&mut Frame> = Vec::new(); |
| 24 | let _ = report.frames_mut(|frame| { |
| 25 | escaped.push(frame); |
| 26 | ControlFlow::Continue(()) |
| 27 | }); |
| 28 | } |
nothing calls this directly
no test coverage detected