rust/tests/ui/editions/edition-extern-crate-allowed.stderr

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

16 lines
460 B
Plaintext
Raw Normal View History

2018-08-08 12:28:26 +00:00
warning: unused extern crate
2018-12-25 15:56:47 +00:00
--> $DIR/edition-extern-crate-allowed.rs:7:1
2018-08-08 12:28:26 +00:00
|
LL | extern crate edition_extern_crate_allowed;
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: remove it
|
2020-01-22 23:57:38 +00:00
note: the lint level is defined here
2018-12-25 15:56:47 +00:00
--> $DIR/edition-extern-crate-allowed.rs:5:9
2018-08-08 12:28:26 +00:00
|
LL | #![warn(rust_2018_idioms)]
| ^^^^^^^^^^^^^^^^
= note: `#[warn(unused_extern_crates)]` implied by `#[warn(rust_2018_idioms)]`
2018-08-08 12:28:26 +00:00
warning: 1 warning emitted