rust/tests/ui/blind/blind-item-block-item-shadow.stderr

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

18 lines
614 B
Plaintext
Raw Normal View History

2018-08-08 12:28:26 +00:00
error[E0255]: the name `Bar` is defined multiple times
2018-12-25 15:56:47 +00:00
--> $DIR/blind-item-block-item-shadow.rs:6:13
2018-08-08 12:28:26 +00:00
|
LL | struct Bar;
| ----------- previous definition of the type `Bar` here
LL | use foo::Bar;
| ^^^^^^^^ `Bar` reimported here
|
= note: `Bar` must be defined only once in the type namespace of this block
help: you can use `as` to change the binding name of the import
2018-08-08 12:28:26 +00:00
|
LL | use foo::Bar as OtherBar;
| ~~~~~~~~~~~~~~~~~~~~
2018-08-08 12:28:26 +00:00
error: aborting due to previous error
For more information about this error, try `rustc --explain E0255`.