mirror of
https://github.com/rust-lang/rust
synced 2024-11-05 20:45:15 +00:00
32 lines
639 B
Text
32 lines
639 B
Text
warning: unused imports: `A`, `C`
|
|
--> $DIR/unused-imports.rs:22:14
|
|
|
|
|
LL | use nested::{A, B, C};
|
|
| ^ ^
|
|
|
|
|
note: the lint level is defined here
|
|
--> $DIR/unused-imports.rs:4:9
|
|
|
|
|
LL | #![warn(unused_imports)]
|
|
| ^^^^^^^^^^^^^^
|
|
|
|
warning: unused imports: `D`, `E`, `G`
|
|
--> $DIR/unused-imports.rs:26:5
|
|
|
|
|
LL | D,
|
|
| ^
|
|
LL | even_more::{
|
|
LL | E,
|
|
| ^
|
|
LL | F,
|
|
LL | G,
|
|
| ^
|
|
|
|
warning: unused import: `I`
|
|
--> $DIR/unused-imports.rs:37:29
|
|
|
|
|
LL | use nested::another::{self, I};
|
|
| ^
|
|
|
|
warning: 3 warnings emitted
|
|
|