Sign in
rust
/
rust
/
97b1c314892ef4497c0ce5656daa3a54c4e052d3
/
.
/
tests
/
ui
/
macros
/
macro-multiple-items.rs
blob: c746d1bc518812aa8271a0b908a680871518d0e6 [
file
]
//@ run-pass
macro_rules
!
make_foo
{
()
=>
(
struct
Foo
;
impl
Foo
{
fn
bar
(&
self
)
{}
}
)
}
make_foo
!();
pub
fn
main
()
{
Foo
.
bar
()
}