rust/src/test/ui/lint/lint-unused-extern-crate.stderr

21 lines
631 B
Plaintext
Raw Normal View History

2018-08-08 07:28:26 -05:00
error: unused extern crate
--> $DIR/lint-unused-extern-crate.rs:21:1
|
LL | extern crate lint_unused_extern_crate5; //~ ERROR: unused extern crate
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: remove it
|
note: lint level defined here
--> $DIR/lint-unused-extern-crate.rs:17:9
|
LL | #![deny(unused_extern_crates)]
| ^^^^^^^^^^^^^^^^^^^^
error: unused extern crate
--> $DIR/lint-unused-extern-crate.rs:39:5
|
LL | extern crate lint_unused_extern_crate2; //~ ERROR unused extern crate
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: remove it
error: aborting due to 2 previous errors