| 7 | static ALLOC: DebuggingAlloc = DebuggingAlloc::new(); |
| 8 | |
| 9 | struct DebuggingAlloc { |
| 10 | alloc_failure: std::sync::atomic::AtomicBool, |
| 11 | } |
| 12 | |
| 13 | impl DebuggingAlloc { |
| 14 | const fn new() -> Self { |
nothing calls this directly
no outgoing calls
no test coverage detected