()
| 862 | #[test] |
| 863 | #[should_panic(expected = "error parsing bounds: LitStr { token: \"T\" } (expected `:`)")] |
| 864 | fn zeroize_bound_no_where_predicate() { |
| 865 | parse_zeroize_test(stringify!( |
| 866 | #[zeroize(bound = "T")] |
| 867 | struct Z<T>(T); |
| 868 | )); |
| 869 | } |
| 870 | } |
nothing calls this directly
no test coverage detected