1
Fork 0
rust/src/test/ui/cfg/future-compat-crate-attributes-using-cfg_attr.rs

13 lines
285 B
Rust
Raw Normal View History

// check-fail
// compile-flags:--cfg foo
#![deny(warnings)]
#![cfg_attr(foo, crate_type="bin")]
//~^ERROR `crate_type` within
//~| WARN this was previously accepted
#![cfg_attr(foo, crate_name="bar")]
//~^ERROR `crate_name` within
//~| WARN this was previously accepted
fn main() {}