()
| 594 | |
| 595 | #[test] |
| 596 | fn zeroize_on_struct() { |
| 597 | parse_zeroize_test(stringify!( |
| 598 | #[zeroize(drop)] |
| 599 | struct Z { |
| 600 | a: String, |
| 601 | b: Vec<u8>, |
| 602 | c: [u8; 3], |
| 603 | } |
| 604 | )); |
| 605 | } |
| 606 | |
| 607 | #[test] |
| 608 | fn zeroize_on_enum() { |
nothing calls this directly
no test coverage detected