summaryrefslogtreecommitdiffstats
path: root/tests/ui/double-type-import.stderr
blob: a2f30d82ec38bda4562bb147d4cdad340fa67f7e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
error[E0252]: the name `X` is defined multiple times
  --> $DIR/double-type-import.rs:3: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 previous error

For more information about this error, try `rustc --explain E0252`.