rust/src/test/ui/cfg-rustdoc.rs
2019-11-21 15:38:30 +01:00

7 lines
70 B
Rust

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