rust/tests/ui/feature-gates/feature-gate-cfg-target-compact.rs
2023-01-11 09:32:08 +00:00

14 lines
434 B
Rust

#[cfg(target(os = "x"))] //~ ERROR compact `cfg(target(..))` is experimental
struct Foo(u64, u64);
#[cfg_attr(target(os = "x"), x)] //~ ERROR compact `cfg(target(..))` is experimental
struct Bar(u64, u64);
#[cfg(not(any(all(target(os = "x")))))] //~ ERROR compact `cfg(target(..))` is experimental
fn foo() {}
fn main() {
cfg!(target(os = "x"));
//~^ ERROR compact `cfg(target(..))` is experimental and subject to change
}