blob: e9dd81cea1bfd0d9c9d779d63db1909fd06e8279 [file] [log] [blame] [edit]
#[cfg(target(os = "linux"))] //~ ERROR compact `cfg(target(..))` is experimental
struct Foo(u64, u64);
#[cfg_attr(target(os = "linux"), non_exhaustive)] //~ ERROR compact `cfg(target(..))` is experimental
struct Bar(u64, u64);
#[cfg(not(any(all(target(os = "linux")))))] //~ ERROR compact `cfg(target(..))` is experimental
fn foo() {}
fn main() {
cfg!(target(os = "linux"));
//~^ ERROR compact `cfg(target(..))` is experimental and subject to change
}