Sign in
fuchsia
/
third_party
/
rust
/
2a3e17c6d5c49eeb770ade2fa660f98e9cce0ce0
/
.
/
tests
/
ui
/
conditional-compilation
/
cfg-attr-multi-invalid-2.rs
blob: 6cac52983b53b838423413d8375b6f82baf9b6ab [
file
] [
log
] [
blame
]
//@ 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
{}