2018-08-30 07:18:55 -05:00
|
|
|
// run-pass
|
2016-07-21 18:03:13 -05:00
|
|
|
// compile-flags:--test
|
|
|
|
#![cfg(any())] // This test should be configured away
|
|
|
|
#![feature(rustc_attrs)] // Test that this is allowed on stable/beta
|
|
|
|
#![feature(iter_arith_traits)] // Test that this is not unused
|
|
|
|
#![deny(unused_features)]
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn dummy() {
|
|
|
|
let () = "this should not reach type-checking";
|
|
|
|
}
|