mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 06:51:58 +00:00
17 lines
418 B
Plaintext
17 lines
418 B
Plaintext
error: duplicate matcher binding
|
|
--> $DIR/issue-61053-duplicate-binder.rs:7:20
|
|
|
|
|
LL | ($x:tt $x:tt) => { $x };
|
|
| -- ^^
|
|
| |
|
|
| previous declaration
|
|
|
|
|
note: the lint level is defined here
|
|
--> $DIR/issue-61053-duplicate-binder.rs:1:9
|
|
|
|
|
LL | #![deny(meta_variable_misuse)]
|
|
| ^^^^^^^^^^^^^^^^^^^^
|
|
|
|
error: aborting due to previous error
|
|
|