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