mirror of
https://git.proxmox.com/git/rustc
synced 2026-03-29 03:51:39 +00:00
10 lines
155 B
Rust
10 lines
155 B
Rust
//@ check-pass
|
|
|
|
macro_rules! macro_rules { () => { struct S; } } // OK
|
|
|
|
macro_rules! {} // OK, calls the macro defined above
|
|
|
|
fn main() {
|
|
let s = S;
|
|
}
|