()
| 86 | /// Test that the custom macro actually derived `Drop` for `Z` |
| 87 | #[test] |
| 88 | fn derive_struct_only_drop() { |
| 89 | #[derive(ZeroizeOnDrop)] |
| 90 | struct Z([u8; 3]); |
| 91 | |
| 92 | assert!(core::mem::needs_drop::<Z>()); |
| 93 | } |
| 94 | |
| 95 | /// Test that the custom macro actually derived `Drop` for `Z` |
| 96 | #[test] |
nothing calls this directly
no outgoing calls
no test coverage detected