Files
rust/tests/rustdoc-ui/lints/doc_cfg_hide.rs
T
Guillaume Gomez 9126c7a0b7 Emit a future error warning for duplicate doc attribute
(cherry picked from commit 7dbbab63e2)
2026-02-05 11:36:45 -08:00

6 lines
179 B
Rust

#![deny(invalid_doc_attributes)]
#![feature(doc_cfg)]
#![doc(auto_cfg(hide = "test"))] //~ ERROR
#![doc(auto_cfg(hide))] //~ ERROR
#![doc(auto_cfg(hide(not(windows))))] //~ ERROR