(&mut self)
| 270 | |
| 271 | impl<'a> Drop for AbortOnDrop<'a> { |
| 272 | fn drop(&mut self) { |
| 273 | use std::io::Write; |
| 274 | let _ = writeln!(&mut io::stderr(), "Cannot unwind out of {}", self.0); |
| 275 | unsafe { libc::abort() } |
| 276 | } |
| 277 | } |
| 278 | |
| 279 | // Tests for this file are in tests/test_function.rs |
nothing calls this directly
no outgoing calls
no test coverage detected