]> git.lizzy.rs Git - rust.git/blob - src/test/ui/conditional-compilation/cfg-attr-multi-invalid-1.rs
Add 'src/tools/rust-analyzer/' from commit '977e12a0bdc3e329af179ef3a9d466af9eb613bb'
[rust.git] / src / test / ui / conditional-compilation / cfg-attr-multi-invalid-1.rs
1 // compile-flags: --cfg broken
2
3 #![crate_type = "lib"]
4 #![cfg_attr(broken, no_core, no_std)]
5 //~^ ERROR the `#[no_core]` attribute is an experimental feature
6
7 pub struct S {}