blob: f99fad881f284303ae9166a1dea853387afd25ad [file] [log] [blame] [edit]
//@ check-fail
//@ compile-flags:--cfg foo --check-cfg=cfg(foo)
#![cfg_attr(foo, crate_type="bin")]
//~^ERROR `crate_type` within
//~|ERROR `crate_type` within
#![cfg_attr(foo, crate_name="bar")]
//~^ERROR `crate_name` within
//~|ERROR `crate_name` within
fn main() {}