2024-04-06 17:33:37 -05:00
|
|
|
//@ compile-flags: --cfg broken --check-cfg=cfg(broken)
|
2018-09-10 17:06:49 -05:00
|
|
|
|
2019-01-02 08:14:24 -06:00
|
|
|
#![crate_type = "lib"]
|
2019-08-22 18:09:51 -05:00
|
|
|
#![cfg_attr(broken, no_std, no_core)]
|
|
|
|
//~^ ERROR the `#[no_core]` attribute is an experimental feature
|
2018-09-10 17:06:49 -05:00
|
|
|
|
2019-01-02 08:14:24 -06:00
|
|
|
pub struct S {}
|