]> git.lizzy.rs Git - rust.git/blob - src/test/ui/use/use-mod.stderr
Merge commit 'cd4810de42c57b64b74dae09c530a4c3a41f87b9' into libgccjit-codegen
[rust.git] / src / test / ui / use / use-mod.stderr
1 error[E0430]: `self` import can only appear once in an import list
2   --> $DIR/use-mod.rs:2:5
3    |
4 LL |     self,
5    |     ^^^^ can only appear once in an import list
6 ...
7 LL |     self
8    |     ---- another `self` import appears here
9
10 error[E0431]: `self` import can only appear in an import list with a non-empty prefix
11   --> $DIR/use-mod.rs:9:6
12    |
13 LL | use {self};
14    |      ^^^^ can only appear in an import list with a non-empty prefix
15
16 error[E0252]: the name `bar` is defined multiple times
17   --> $DIR/use-mod.rs:5:5
18    |
19 LL |     self,
20    |     ---- previous import of the module `bar` here
21 ...
22 LL |     self
23    |     ^^^^
24    |     |
25    |     `bar` reimported here
26    |     help: remove unnecessary import
27    |
28    = note: `bar` must be defined only once in the type namespace of this module
29
30 error: aborting due to 3 previous errors
31
32 Some errors have detailed explanations: E0252, E0430, E0431.
33 For more information about an error, try `rustc --explain E0252`.