()
| 44 | |
| 45 | #[test] |
| 46 | fn secret_box_alloc_test() { |
| 47 | let b1 = SecretBox::new([u128::MAX; 10]); |
| 48 | core::hint::black_box(&b1); |
| 49 | let b2 = SecretBox::new([u8::MAX; 160]); |
| 50 | core::hint::black_box(&b2); |
| 51 | } |
| 52 | |
| 53 | struct ObserveSecretBox<S: Default>(Box<S>); |
| 54 |
nothing calls this directly
no outgoing calls
no test coverage detected