()
| 64 | /// Test that the custom macro actually derived `Drop` for `Z` |
| 65 | #[test] |
| 66 | fn derive_struct_drop() { |
| 67 | #[derive(Zeroize, ZeroizeOnDrop)] |
| 68 | struct Z([u8; 3]); |
| 69 | |
| 70 | assert!(core::mem::needs_drop::<Z>()); |
| 71 | } |
| 72 | |
| 73 | /// Test that the custom macro actually derived `Drop` for `Z` |
| 74 | #[test] |
nothing calls this directly
no outgoing calls
no test coverage detected