summary refs log tree commit diff
path: root/src/test/ui/cfg/future-compat-crate-attributes-using-cfg_attr.rs
blob: ef12b05fab23723c9fa2084f2c36d0e62be657b5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
// 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() {}