rust/tests/ui/hygiene/cross-crate-redefine.stderr

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

16 lines
601 B
Plaintext
Raw Normal View History

2021-10-23 11:06:58 +00:00
error[E0428]: the name `MyStruct` is defined multiple times
2021-10-28 20:48:39 +00:00
--> $DIR/cross-crate-redefine.rs:10:1
2021-10-23 11:06:58 +00:00
|
LL | my_struct!(define);
| ^^^^^^^^^^^^^^^^^^ `MyStruct` redefined here
LL |
LL | my_struct!(define);
| ------------------ previous definition of the type `MyStruct` here
|
= note: `MyStruct` must be defined only once in the type namespace of this module
= note: this error originates in the macro `my_struct` (in Nightly builds, run with -Z macro-backtrace for more info)
error: aborting due to previous error
For more information about this error, try `rustc --explain E0428`.