mirror of
https://github.com/rust-lang/rust.git
synced 2025-05-14 02:49:40 +00:00
8 lines
172 B
Rust
8 lines
172 B
Rust
// compile-flags: --cfg broken
|
|
|
|
#![feature(cfg_attr_multi)]
|
|
#![crate_type = "lib"]
|
|
#![cfg_attr(broken, no_core, no_std)] //~ ERROR no_core is experimental
|
|
|
|
pub struct S {}
|