blob: e061e42b29db805942376fb13066c5546d8fadcb [file] [log] [blame] [edit]
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;