rustc/tests/ui/rustdoc/cfg-rustdoc.rs
2023-08-02 10:33:26 +02:00

7 lines
70 B
Rust

#[cfg(doc)]
pub struct Foo;
fn main() {
let f = Foo; //~ ERROR
}