mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-22 06:44:35 +00:00
8 lines
192 B
Rust
8 lines
192 B
Rust
//@ check-pass
|
|
//@ compile-flags: --check-cfg=cfg()
|
|
|
|
/// uniz is nor a builtin nor pass as arguments so is unexpected
|
|
#[cfg(uniz)]
|
|
//~^ WARNING unexpected `cfg` condition name
|
|
pub struct Bar;
|