()
| 39 | |
| 40 | #[test] |
| 41 | fn ok_simple() { |
| 42 | assert_eq!(check_and_reset(), false); |
| 43 | assert_no_alloc(|| { |
| 44 | }); |
| 45 | |
| 46 | do_alloc(); |
| 47 | assert_eq!(check_and_reset(), false); |
| 48 | } |
| 49 | |
| 50 | #[test] |
| 51 | fn ok_nested() { |
nothing calls this directly
no test coverage detected