mirror of
https://github.com/rust-lang/rust.git
synced 2026-04-27 18:57:42 +03:00
9126c7a0b7
(cherry picked from commit 7dbbab63e2)
6 lines
179 B
Rust
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
|