blob: 3b6dfd9bc5e09f3411897ac66392300b3dd75436 [file] [log] [blame]
// run-pass
macro_rules! make_foo {
() => (
struct Foo;
impl Foo {
fn bar(&self) {}
}
)
}
make_foo!();
pub fn main() {
Foo.bar()
}