1
Fork 0
rust/src/test/ui/conditional-compilation/cfg-attr-multi-invalid-2.rs

8 lines
150 B
Rust
Raw Normal View History

//
// compile-flags: --cfg broken
2018-10-04 04:55:47 -07:00
#![feature(cfg_attr_multi)]
#![cfg_attr(broken, no_std, no_core)] //~ ERROR no_core is experimental
fn main() { }