Files
rust/tests/rustdoc-ui/invalid-cfg.rs
2025-09-27 11:29:48 +02:00

5 lines
147 B
Rust

#![feature(doc_cfg)]
#[doc(cfg = "x")] //~ ERROR not followed by parentheses
#[doc(cfg(x, y))] //~ ERROR multiple `cfg` predicates
pub struct S {}