]> git.proxmox.com Git - rustc.git/blob - src/test/ui/issues/issue-34932.rs
Update unsuspicious file list
[rustc.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 }