blob: 46b561af4467ef24d3a4d0c52c77654065a2e401 [file] [edit]
//@ check-pass
macro_rules! make_foo {
() => (
struct Foo;
impl Foo {
fn bar(&self) {}
}
)
}
make_foo!();
pub fn main() {
Foo.bar()
}