rustc/tests/rustdoc-ui/check-cfg/check-cfg.rs
2024-06-04 21:09:03 +02:00

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;