summary refs log tree commit diff
path: root/src/test/ui/conditional-compilation/cfg-attr-multi-invalid-2.rs
blob: 8a9e99d703c7027169cea885fdffd9e1de4803e7 (plain)
1
2
3
4
5
6
// compile-flags: --cfg broken

#![crate_type = "lib"]
#![cfg_attr(broken, no_std, no_core)] //~ ERROR no_core is experimental

pub struct S {}