blob: bc918c7a4dc2272512138965dc9eabe5549bbee6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
  | 
// run-pass
// Issue #17436
// pretty-expanded FIXME #23616
mod bleh {
    macro_rules! foo {
        () => {
            pub fn bar(&self) { }
        }
    }
    pub struct S;
    impl S {
        foo!();
    }
}
fn main() {
    bleh::S.bar();
}
 
  |