]> git.lizzy.rs Git - rust.git/blob - src/test/ui/use-mod.stderr
Rollup merge of #47846 - roblabla:bugfix-ocaml, r=kennytm
[rust.git] / src / test / ui / use-mod.stderr
1 error[E0430]: `self` import can only appear once in an import list
2   --> $DIR/use-mod.rs:12:5
3    |
4 12 |     self,
5    |     ^^^^ can only appear once in an import list
6 ...
7 15 |     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:19:6
12    |
13 19 | 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:15:5
18    |
19 12 |     self,
20    |     ---- previous import of the module `bar` here
21 ...
22 15 |     self
23    |     ^^^^ `bar` reimported here
24    |
25    = note: `bar` must be defined only once in the type namespace of this module
26 help: You can use `as` to change the binding name of the import
27    |
28 15 |     self as other_bar
29    |
30
31 error: aborting due to 3 previous errors
32