2017-12-10 13:47:55 -06:00
|
|
|
error[E0255]: the name `foo` is defined multiple times
|
|
|
|
--> $DIR/blind-item-item-shadow.rs:13:5
|
|
|
|
|
|
2017-12-10 14:29:24 -06:00
|
|
|
11 | mod foo { pub mod foo { } }
|
2017-12-18 00:44:32 -06:00
|
|
|
| ------- previous definition of the module `foo` here
|
2017-12-10 13:47:55 -06:00
|
|
|
12 |
|
|
|
|
13 | use foo::foo;
|
|
|
|
| ^^^^^^^^ `foo` reimported here
|
|
|
|
|
|
|
|
|
= note: `foo` must be defined only once in the type namespace of this module
|
|
|
|
help: You can use `as` to change the binding name of the import
|
|
|
|
|
|
2018-01-28 19:48:54 -06:00
|
|
|
13 | use foo::foo as other_foo;
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^
|
2017-12-10 13:47:55 -06:00
|
|
|
|
|
|
|
error: aborting due to previous error
|
|
|
|
|
2018-02-19 14:40:25 -06:00
|
|
|
If you want more information on this error, try using "rustc --explain E0255"
|