mirror of
https://git.proxmox.com/git/rustc
synced 2025-05-21 12:42:39 +00:00
18 lines
290 B
Rust
18 lines
290 B
Rust
// This checks that exported macros lint as part of their module of origin, not
|
|
// the root module.
|
|
//
|
|
// check-pass
|
|
|
|
//! Top level documentation
|
|
#![deny(missing_docs)]
|
|
|
|
#[allow(missing_docs)]
|
|
mod module {
|
|
#[macro_export]
|
|
macro_rules! hello {
|
|
() => ()
|
|
}
|
|
}
|
|
|
|
fn main() {}
|