blob: edd9febbe3770ef3082bf0fceec56717bdbb2b21 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
// 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
{}
}
|