Sign in
gnu
/
gcc.git
/
refs/heads/master
/
.
/
gcc
/
testsuite
/
rust
/
compile
/
macros
/
mbe
/
macro-expand-module.rs
blob: 821a2319d89ba9ef774fd7e95f95c95c156c48d6 [
file
]
#![
feature
(
no_core
)]
#![
no_core
]
mod
foo
{
macro_rules
!
bar
{
()
=>
()
}
bar
!
();
pub
struct
S
;
}
pub
fn
buzz
(
_
:
foo
::
S
)
{}