blob: e6e840dcbab6fd3e1527f1167a0700af2c4d33ff (
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() {}
|