Sign in
fuchsia
/
third_party
/
rust
/
upstream/beta
/
.
/
tests
/
rustdoc-ui
/
issues
/
ice-macro-hidden-exported-macro-defid-101076.rs
blob: 0c9a8b9175b3d137357a1655053516f235c16ac3 [
file
] [
log
] [
blame
]
//@ check-pass
// https://github.com/rust-lang/rust/issues/101076
const
_
:
()
=
{
#[
macro_export
]
macro_rules
!
first_macro
{
()
=>
{}
}
mod
foo
{
#[
macro_export
]
macro_rules
!
second_macro
{
()
=>
{}
}
}
};