summaryrefslogtreecommitdiffstats
path: root/src/test/ui/conditional-compilation/cfg-attr-crate-2.rs
blob: 7dbeba53afcfe61739ffbb50f05d6821c8ed9a5a (plain)
1
2
3
4
5
6
7
8
// https://github.com/rust-lang/rust/issues/21833#issuecomment-72353044

// compile-flags: --cfg broken

#![crate_type = "lib"]
#![cfg_attr(broken, no_core)] //~ ERROR the `#[no_core]` attribute is an experimental feature

pub struct S {}