8 lines
212 B
Rust
8 lines
212 B
Rust
|
// check-pass
|
||
|
// compile-flags: --check-cfg=names() -Z unstable-options
|
||
|
|
||
|
/// uniz is nor a builtin nor pass as arguments so is unexpected
|
||
|
#[cfg(uniz)]
|
||
|
//~^ WARNING unexpected `cfg` condition name
|
||
|
pub struct Bar;
|