1 #![deny(warnings)] 2 #![allow(clippy::derive_partial_eq_without_eq)] 3 4 // This test target is convoluted with the actual #[test] in a separate file to 5 // get it so that the stable compiler does not need to parse the code of the 6 // test. If the test were written with #[cfg(feature = "unstable")] #[test] 7 // right here, the stable compiler would fail to parse those raw identifiers 8 // even if the cfg were not enabled. 9 #[cfg(feature = "unstable")] 10 mod unstable; 11