(&self, _layout: Layout)
| 10 | |
| 11 | unsafe impl GlobalAlloc for FailAllocator { |
| 12 | unsafe fn alloc(&self, _layout: Layout) -> *mut u8 { |
| 13 | null_mut() |
| 14 | } |
| 15 | |
| 16 | unsafe fn dealloc(&self, _ptr: *mut u8, _layout: Layout) {} |
| 17 | } |
nothing calls this directly
no test coverage detected