rust/tests/ui/cfg/future-compat-crate-attributes-using-cfg_attr.rs
2024-02-16 20:02:50 +00:00

16 lines
406 B
Rust

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