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