about summary refs log tree commit diff
path: root/tests/ui/auto-traits/pre-cfg.rs
blob: 4820a53535803501869ed3b688758488f44ba041 (plain)
1
2
3
4
5
6
7
8
//@ check-pass

#[cfg(false)]
auto trait Foo {}
//~^ WARN `auto` traits are unstable
//~| WARN unstable syntax can change at any point in the future, causing a hard error!

fn main() {}