()
| 801 | #[test] |
| 802 | #[should_panic(expected = "duplicate #[zeroize] bound flags")] |
| 803 | fn zeroize_duplicate_bound_list() { |
| 804 | parse_zeroize_test(stringify!( |
| 805 | #[zeroize(bound = "T: MyTrait", bound = "")] |
| 806 | struct Z<T>(T); |
| 807 | )); |
| 808 | } |
| 809 | |
| 810 | #[test] |
| 811 | #[should_panic( |
nothing calls this directly
no test coverage detected