rustc/tests/rustdoc-ui/check-cfg.rs
2024-06-24 14:48:22 +02:00

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;