dd2b027d5d
Much like the previous commit. I think the removal of "the token" in each message is fine here. There are many more error messages that mention tokens without saying "the token" than those that do say it.
10 lines
125 B
Rust
10 lines
125 B
Rust
macro_rules! inner {
|
|
(#![$inner:meta]) => ()
|
|
}
|
|
|
|
inner! {
|
|
/// Outer
|
|
} //~^ ERROR no rules expected `[`
|
|
|
|
fn main() { }
|