mirror of
https://git.proxmox.com/git/rustc
synced 2025-06-01 18:54:33 +00:00
8 lines
128 B
Rust
8 lines
128 B
Rust
#![allow(unused_macros)]
|
|
|
|
macro_rules! test {
|
|
($e:expr +) => () //~ ERROR not allowed for `expr` fragments
|
|
}
|
|
|
|
fn main() { }
|