]> git.lizzy.rs Git - rust.git/blob - src/test/ui/issues/issue-34932.rs
Rollup merge of #96539 - tmandry:relnotes-1.61, r=Mark-Simulacrum
[rust.git] / src / test / ui / issues / issue-34932.rs
1 // run-pass
2 // compile-flags:--test
3 #![cfg(any())] // This test should be configured away
4 #![feature(rustc_attrs)] // Test that this is allowed on stable/beta
5 #![feature(iter_arith_traits)] // Test that this is not unused
6 #![deny(unused_features)]
7
8 #[test]
9 fn dummy() {
10     let () = "this should not reach type-checking";
11 }