21 lines
576 B
Plaintext
21 lines
576 B
Plaintext
error: unused extern crate
|
|
--> $DIR/lint-unused-extern-crate.rs:11:1
|
|
|
|
|
LL | extern crate lint_unused_extern_crate5;
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: remove it
|
|
|
|
|
note: the lint level is defined here
|
|
--> $DIR/lint-unused-extern-crate.rs:7:9
|
|
|
|
|
LL | #![deny(unused_extern_crates)]
|
|
| ^^^^^^^^^^^^^^^^^^^^
|
|
|
|
error: unused extern crate
|
|
--> $DIR/lint-unused-extern-crate.rs:29:5
|
|
|
|
|
LL | extern crate lint_unused_extern_crate2;
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: remove it
|
|
|
|
error: aborting due to 2 previous errors
|
|
|