rust/tests/ui/check-cfg/stmt-no-ice.rs

11 lines
208 B
Rust

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