]> git.proxmox.com Git - rustc.git/blame - tests/ui/lint/use-redundant.stderr
New upstream version 1.69.0+dfsg1
[rustc.git] / tests / ui / lint / use-redundant.stderr
CommitLineData
532ac7d7
XL
1warning: unused import: `m1::*`
2 --> $DIR/use-redundant.rs:17:5
3 |
4LL | use m1::*;
5 | ^^^^^
6 |
74b04a01 7note: the lint level is defined here
532ac7d7
XL
8 --> $DIR/use-redundant.rs:2:9
9 |
10LL | #![warn(unused_imports)]
11 | ^^^^^^^^^^^^^^
12
13warning: unused import: `m2::*`
14 --> $DIR/use-redundant.rs:18:5
15 |
16LL | use m2::*;
17 | ^^^^^
18
19warning: the item `Bar` is imported redundantly
20 --> $DIR/use-redundant.rs:21:9
21 |
22LL | use crate::foo::Bar;
23 | --------------- the item `Bar` is already imported here
24...
25LL | use crate::foo::Bar;
26 | ^^^^^^^^^^^^^^^
27
ba9703b0
XL
28warning: 3 warnings emitted
29