mirror of
https://github.com/rust-lang/rust.git
synced 2025-02-08 21:13:55 +00:00
10 lines
99 B
Rust
10 lines
99 B
Rust
// #2953
|
|
|
|
macro_rules! demo {
|
|
($a:ident <- $b:expr) => {};
|
|
}
|
|
|
|
fn main() {
|
|
demo!(i <- 0);
|
|
}
|