rust/tests/rustdoc/auxiliary/issue-99221-aux.rs

21 lines
309 B
Rust

pub struct Option;
impl Option {
pub fn unwrap(self) {}
}
mod macros {
use crate::Option;
/// [`Option::unwrap`]
#[macro_export]
macro_rules! print {
() => ()
}
}
mod structs {
use crate::Option;
/// [`Option::unwrap`]
pub struct Print;
}
pub use structs::Print;