rust/tests/rustdoc-ui/deny-missing-docs-macro.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

9 lines
93 B
Rust
Raw Normal View History

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