]> git.lizzy.rs Git - rust.git/blob - tests/rustdoc-ui/deny-missing-docs-macro.rs
Rollup merge of #105172 - alexs-sh:issue-98861-fix-next, r=scottmcm
[rust.git] / tests / rustdoc-ui / deny-missing-docs-macro.rs
1 //! foo
2
3 #![deny(missing_docs)]
4
5 #[macro_export]
6 macro_rules! foo { //~ ERROR
7     () => {}
8 }