]> git.proxmox.com Git - rustc.git/blob - src/test/ui/user-defined-macro-rules.rs
Update unsuspicious file list
[rustc.git] / src / test / ui / user-defined-macro-rules.rs
1 // check-pass
2
3 macro_rules! macro_rules { () => { struct S; } } // OK
4
5 macro_rules! {} // OK, calls the macro defined above
6
7 fn main() {
8 let s = S;
9 }