rust/tests/ui/macros/issue-38715.stderr

26 lines
847 B
Plaintext
Raw Normal View History

error[E0428]: the name `foo` is defined multiple times
2018-12-25 15:56:47 +00:00
--> $DIR/issue-38715.rs:5:1
2018-04-21 14:18:38 +00:00
|
LL | macro_rules! foo { () => {} }
| ---------------- previous definition of the macro `foo` here
...
2019-03-09 12:03:44 +00:00
LL | macro_rules! foo { () => {} }
| ^^^^^^^^^^^^^^^^ `foo` redefined here
2018-04-21 14:18:38 +00:00
|
= note: `foo` must be defined only once in the macro namespace of this module
2018-04-21 14:18:38 +00:00
error[E0428]: the name `bar` is defined multiple times
--> $DIR/issue-38715.rs:14:5
|
LL | macro_rules! bar { () => {} }
| ---------------- previous definition of the macro `bar` here
...
LL | macro_rules! bar { () => {} }
| ^^^^^^^^^^^^^^^^ `bar` redefined here
|
= note: `bar` must be defined only once in the macro namespace of this module
error: aborting due to 2 previous errors
2018-04-21 14:18:38 +00:00
For more information about this error, try `rustc --explain E0428`.