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

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

13 lines
171 B
Rust
Raw Normal View History

//@ check-pass
macro_rules! m {
() => {
/// A
//~^ WARNING
#[path = "auxiliary/module_macro_doc.rs"]
pub mod mymodule;
}
}
m!();