mirror of
https://github.com/rust-lang/rust.git
synced 2025-12-01 12:47:42 +00:00
21 lines
370 B
Plaintext
21 lines
370 B
Plaintext
warning: unused import: `m1::*`
|
|
--> $DIR/use-redundant.rs:17:5
|
|
|
|
|
LL | use m1::*;
|
|
| ^^^^^
|
|
|
|
|
note: the lint level is defined here
|
|
--> $DIR/use-redundant.rs:2:9
|
|
|
|
|
LL | #![warn(unused_imports)]
|
|
| ^^^^^^^^^^^^^^
|
|
|
|
warning: unused import: `m2::*`
|
|
--> $DIR/use-redundant.rs:18:5
|
|
|
|
|
LL | use m2::*;
|
|
| ^^^^^
|
|
|
|
warning: 2 warnings emitted
|
|
|