rust/tests/rustdoc-ui/check-cfg.rs

8 lines
192 B
Rust
Raw Normal View History

//@ check-pass
//@ compile-flags: --check-cfg=cfg()
2022-02-19 14:31:20 +01:00
/// uniz is nor a builtin nor pass as arguments so is unexpected
#[cfg(uniz)]
//~^ WARNING unexpected `cfg` condition name
pub struct Bar;