2022-03-03 11:52:09 +01:00
|
|
|
// This test checks that there is no ICE with this code
|
|
|
|
//
|
|
|
|
//@ check-pass
|
2024-04-09 14:07:30 +02:00
|
|
|
//@ no-auto-check-cfg
|
2024-02-25 14:56:14 +01:00
|
|
|
//@ compile-flags:--check-cfg=cfg()
|
2022-03-03 11:52:09 +01:00
|
|
|
|
|
|
|
fn main() {
|
|
|
|
#[cfg(crossbeam_loom)]
|
|
|
|
//~^ WARNING unexpected `cfg` condition name
|
|
|
|
{}
|
|
|
|
}
|