rust/src/test/ui/blind-item-item-shadow.stderr

19 lines
594 B
Plaintext
Raw Normal View History

error[E0255]: the name `foo` is defined multiple times
--> $DIR/blind-item-item-shadow.rs:13:5
|
2018-02-22 18:42:32 -06:00
LL | mod foo { pub mod foo { } }
| ------- previous definition of the module `foo` here
2018-02-24 17:01:39 -06:00
LL |
2018-02-22 18:42:32 -06:00
LL | 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-02-24 17:01:39 -06:00
LL | use foo::foo as other_foo;
| ^^^^^^^^^^^^^^^^^^^^^
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"