mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-27 09:14:20 +00:00
5134a04eaa
Some minor (English only) heroics are performed to print error messages like "5th rule of macro `m` is never used". The form "rule #5 of macro `m` is never used" is just as good and much simpler to implement.
27 lines
580 B
Plaintext
27 lines
580 B
Plaintext
error: rule #4 of macro `num` is never used
|
|
--> $DIR/unused-macro-rules.rs:10:5
|
|
|
|
|
LL | (four) => { 4 };
|
|
| ^^^^^^
|
|
|
|
|
note: the lint level is defined here
|
|
--> $DIR/unused-macro-rules.rs:1:9
|
|
|
|
|
LL | #![deny(unused_macro_rules)]
|
|
| ^^^^^^^^^^^^^^^^^^
|
|
|
|
error: rule #2 of macro `num` is never used
|
|
--> $DIR/unused-macro-rules.rs:8:5
|
|
|
|
|
LL | (two) => { 2 };
|
|
| ^^^^^
|
|
|
|
error: rule #3 of macro `num_rec` is never used
|
|
--> $DIR/unused-macro-rules.rs:30:5
|
|
|
|
|
LL | (three) => {
|
|
| ^^^^^^^
|
|
|
|
error: aborting due to 3 previous errors
|
|
|