about summary refs log tree commit diff
path: root/tests/ui/conditional-compilation/cfg-attr-multi-invalid-2.rs
blob: 6cac52983b53b838423413d8375b6f82baf9b6ab (plain)
1
2
3
4
5
6
7
//@ 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 {}