mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-23 07:14:28 +00:00
8 lines
210 B
Rust
8 lines
210 B
Rust
// check-pass
|
|
// compile-flags: --check-cfg=cfg() -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;
|