rust/tests/ui/imports/duplicate-use-bindings.stderr
2025-06-28 17:04:16 +05:00

14 lines
463 B
Plaintext

error[E0252]: the name `X` is defined multiple times
--> $DIR/duplicate-use-bindings.rs:5:9
|
LL | pub use self::bar::X;
| ------------ previous import of the type `X` here
LL | use self::bar::X;
| ^^^^^^^^^^^^ `X` reimported here
|
= note: `X` must be defined only once in the type namespace of this module
error: aborting due to 1 previous error
For more information about this error, try `rustc --explain E0252`.