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-10 13:47:55 -06:00
|
|
|
| ---------------------------- previous definition of the module `foo` here
|
|
|
|
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
|
|
|
|
|
|
|
|
|
13 | use foo::foo as Otherfoo;
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
error: aborting due to previous error
|
|
|
|
|