summaryrefslogtreecommitdiffstats
path: root/src/test/ui/use/use-paths-as-items.stderr
blob: b09001a9bcd45b8f4458689a10af81616c90fb40 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
error[E0252]: the name `mem` is defined multiple times
  --> $DIR/use-paths-as-items.rs:7:5
   |
LL | use std::{mem, ptr};
   |           --- previous import of the module `mem` here
LL | use std::mem;
   |     ^^^^^^^^ `mem` reimported here
   |
   = note: `mem` 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`.