mirror of
https://github.com/rust-lang/rust.git
synced 2025-01-25 06:03:16 +00:00
11 lines
226 B
Rust
11 lines
226 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
|
|
{}
|
|
}
|