mirror of
https://git.proxmox.com/git/rustc
synced 2025-08-15 13:49:13 +00:00
10 lines
125 B
Rust
10 lines
125 B
Rust
macro_rules! inner {
|
|
(#![$inner:meta]) => ()
|
|
}
|
|
|
|
inner! {
|
|
/// Outer
|
|
} //~^ ERROR no rules expected `[`
|
|
|
|
fn main() { }
|