mirror of
https://git.proxmox.com/git/rustc
synced 2025-08-17 06:34:22 +00:00
16 lines
188 B
Rust
16 lines
188 B
Rust
//@ run-pass
|
|
#![allow(path_statements)]
|
|
|
|
macro_rules! inner {
|
|
($e:pat ) => ($e)
|
|
}
|
|
|
|
macro_rules! outer {
|
|
($e:pat ) => (inner!($e))
|
|
}
|
|
|
|
fn main() {
|
|
let outer!(g1) = 13;
|
|
g1;
|
|
}
|