rust/tests/ui/lint/unused/lint-unused-extern-crate.stderr

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

21 lines
576 B
Plaintext
Raw Normal View History

2018-08-08 07:28:26 -05:00
error: unused extern crate
2018-12-25 09:56:47 -06:00
--> $DIR/lint-unused-extern-crate.rs:11:1
2018-08-08 07:28:26 -05:00
|
2019-03-09 06:03:44 -06:00
LL | extern crate lint_unused_extern_crate5;
2018-08-08 07:28:26 -05:00
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: remove it
|
2020-01-22 17:57:38 -06:00
note: the lint level is defined here
2018-12-25 09:56:47 -06:00
--> $DIR/lint-unused-extern-crate.rs:7:9
2018-08-08 07:28:26 -05:00
|
LL | #![deny(unused_extern_crates)]
| ^^^^^^^^^^^^^^^^^^^^
error: unused extern crate
2018-12-25 09:56:47 -06:00
--> $DIR/lint-unused-extern-crate.rs:29:5
2018-08-08 07:28:26 -05:00
|
2019-03-09 06:03:44 -06:00
LL | extern crate lint_unused_extern_crate2;
2018-08-08 07:28:26 -05:00
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: remove it
error: aborting due to 2 previous errors