]> git.lizzy.rs Git - rust.git/blob - src/test/ui/double-type-import.stderr
Don't default on std crate when manipulating browser history
[rust.git] / src / test / ui / double-type-import.stderr
1 error[E0252]: the name `X` is defined multiple times
2   --> $DIR/double-type-import.rs:3:9
3    |
4 LL |     pub use self::bar::X;
5    |             ------------ previous import of the type `X` here
6 LL |     use self::bar::X;
7    |     ----^^^^^^^^^^^^-
8    |     |   |
9    |     |   `X` reimported here
10    |     help: remove unnecessary import
11    |
12    = note: `X` must be defined only once in the type namespace of this module
13
14 error: aborting due to previous error
15
16 For more information about this error, try `rustc --explain E0252`.