summaryrefslogtreecommitdiffstats
path: root/src/test/ui/cfg/future-compat-crate-attributes-using-cfg_attr.rs
blob: 6cb2ff9d8136be4834fad727fb8323b85a962fd0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// check-fail
// compile-flags:--cfg foo

#![deny(warnings)]
#![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() {}