rust/tests/ui/check-cfg/stmt-no-ice.rs
Urgau 517374150c compiletest: add no-auto-check-cfg directive
this directive prevents compiletest from adding any implicit and
automatic --check-cfg arguments
2024-05-04 11:30:38 +02:00

12 lines
230 B
Rust

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