]> git.lizzy.rs Git - rust.git/blob - tests/rustdoc-ui/deny-missing-docs-macro.rs
Rollup merge of #104672 - Voultapher:unify-sort-modules, r=thomcc
[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 }