Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
ui
/
conditional-compilation
/
cfg-attr-multi-invalid-2.rs
blob: 6cac52983b53b838423413d8375b6f82baf9b6ab [
file
] [
log
] [
blame
] [
edit
]
//@ compile-flags: --cfg broken --check-cfg=cfg(broken)
#![
crate_type
=
"lib"
]
#![
cfg_attr
(
broken
,
no_std
,
no_core
)]
//~^ ERROR the `#[no_core]` attribute is an experimental feature
pub
struct
S
{}