blob: f9b93c408fd68f5c5be74ff01ba465c87238b5ee [file] [log] [blame] [edit]
//@ check-pass
const _: () = {
#[macro_export]
macro_rules! first_macro {
() => {}
}
mod foo {
#[macro_export]
macro_rules! second_macro {
() => {}
}
}
};