]> git.lizzy.rs Git - rust.git/blob - src/test/ui/double-import.stderr
Rollup merge of #57107 - mjbshaw:thread_local_test, r=nikomatsakis
[rust.git] / src / test / ui / double-import.stderr
1 error[E0252]: the name `foo` is defined multiple times
2   --> $DIR/double-import.rs:13:5
3    |
4 LL | use sub1::foo;
5    |     --------- previous import of the value `foo` here
6 LL | use sub2::foo; //~ ERROR the name `foo` is defined multiple times
7    |     ^^^^^^^^^ `foo` reimported here
8    |
9    = note: `foo` must be defined only once in the value namespace of this module
10 help: you can use `as` to change the binding name of the import
11    |
12 LL | use sub2::foo as other_foo; //~ ERROR the name `foo` is defined multiple times
13    |     ^^^^^^^^^^^^^^^^^^^^^^
14
15 error: aborting due to previous error
16
17 For more information about this error, try `rustc --explain E0252`.