mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-23 07:14:28 +00:00
21 lines
397 B
Plaintext
21 lines
397 B
Plaintext
error: unused import: `core::any`
|
|
--> $DIR/unused-2018.rs:6:9
|
|
|
|
|
LL | use core::any;
|
|
| ^^^^^^^^^
|
|
|
|
|
note: the lint level is defined here
|
|
--> $DIR/unused-2018.rs:3:9
|
|
|
|
|
LL | #![deny(unused_imports)]
|
|
| ^^^^^^^^^^^^^^
|
|
|
|
error: unused import: `core`
|
|
--> $DIR/unused-2018.rs:10:9
|
|
|
|
|
LL | use core;
|
|
| ^^^^
|
|
|
|
error: aborting due to 2 previous errors
|
|
|