rust/tests/ui/check-cfg/stmt-no-ice.rs
2024-02-16 20:02:50 +00:00

11 lines
228 B
Rust

// This test checks that there is no ICE with this code
//
//@ check-pass
//@ compile-flags:--check-cfg=cfg() -Z unstable-options
fn main() {
#[cfg(crossbeam_loom)]
//~^ WARNING unexpected `cfg` condition name
{}
}