2015-02-09 09:29:21 -08:00
|
|
|
// https://github.com/rust-lang/rust/issues/21833#issuecomment-72353044
|
|
|
|
|
2024-04-07 00:33:37 +02:00
|
|
|
//@ compile-flags: --cfg broken --check-cfg=cfg(broken)
|
2019-01-02 17:14:24 +03:00
|
|
|
|
|
|
|
#![crate_type = "lib"]
|
2019-08-23 01:09:51 +02:00
|
|
|
#![cfg_attr(broken, no_core)] //~ ERROR the `#[no_core]` attribute is an experimental feature
|
2015-02-09 09:29:21 -08:00
|
|
|
|
2019-01-02 17:14:24 +03:00
|
|
|
pub struct S {}
|