rust/src/test/rustdoc-ui/deny-missing-docs-macro.rs
2019-01-13 19:47:02 +00:00

8 lines
93 B
Rust

//! foo
#![deny(missing_docs)]
#[macro_export]
macro_rules! foo { //~ ERROR
() => {}
}