rust/tests/ui/rustdoc/cfg-rustdoc.rs

7 lines
70 B
Rust
Raw Normal View History

#[cfg(doc)]
2019-09-06 03:51:52 -05:00
pub struct Foo;
fn main() {
let f = Foo; //~ ERROR
}