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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

8 lines
192 B
Rust
Raw Normal View History

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