]> git.lizzy.rs Git - rust.git/blob - tests/rustdoc-ui/invalid-cfg.rs
Rollup merge of #106699 - eholk:await-chains-drop-tracking, r=wesleywiser
[rust.git] / tests / rustdoc-ui / invalid-cfg.rs
1 #![feature(doc_cfg)]
2 #[doc(cfg = "x")] //~ ERROR not followed by parentheses
3 #[doc(cfg(x, y))] //~ ERROR multiple `cfg` predicates
4 struct S {}