]> git.lizzy.rs Git - rust.git/blob - src/test/ui/issues/issue-32354-suggest-import-rename.stderr
Merge branch 'master' into feature/core_convert_id
[rust.git] / src / test / ui / issues / issue-32354-suggest-import-rename.stderr
1 error[E0252]: the name `ConstructorExtension` is defined multiple times
2   --> $DIR/issue-32354-suggest-import-rename.rs:24:5
3    |
4 LL | use extension1::ConstructorExtension;
5    |     -------------------------------- previous import of the trait `ConstructorExtension` here
6 LL | use extension2::ConstructorExtension; //~ ERROR is defined multiple times
7    |     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ `ConstructorExtension` reimported here
8    |
9    = note: `ConstructorExtension` must be defined only once in the type namespace of this module
10 help: You can use `as` to change the binding name of the import
11    |
12 LL | use extension2::ConstructorExtension as OtherConstructorExtension; //~ ERROR 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`.