mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-22 14:55:26 +00:00
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.
12 lines
225 B
Rust
12 lines
225 B
Rust
macro_rules! number {
|
|
(neg false, $self:ident) => { $self };
|
|
($signed:tt => $ty:ty;) => {
|
|
number!(neg $signed, $self);
|
|
//~^ ERROR no rules expected `$`
|
|
};
|
|
}
|
|
|
|
number! { false => u8; }
|
|
|
|
fn main() {}
|