2018-08-24 16:00:15 -05:00
|
|
|
warning: unused extern crate
|
2019-04-03 12:50:28 -05:00
|
|
|
--> $DIR/remove-extern-crate.rs:9:1
|
2018-08-24 16:00:15 -05:00
|
|
|
|
|
|
|
|
LL | extern crate core;
|
|
|
|
| ^^^^^^^^^^^^^^^^^^ help: remove it
|
|
|
|
|
|
2020-01-22 17:57:38 -06:00
|
|
|
note: the lint level is defined here
|
2019-04-03 12:50:28 -05:00
|
|
|
--> $DIR/remove-extern-crate.rs:7:9
|
2018-08-24 16:00:15 -05:00
|
|
|
|
|
|
|
|
LL | #![warn(rust_2018_idioms)]
|
|
|
|
| ^^^^^^^^^^^^^^^^
|
2019-07-16 15:17:38 -05:00
|
|
|
= note: `#[warn(unused_extern_crates)]` implied by `#[warn(rust_2018_idioms)]`
|
2018-08-24 16:00:15 -05:00
|
|
|
|
|
|
|
warning: `extern crate` is not idiomatic in the new edition
|
2019-04-25 02:06:49 -05:00
|
|
|
--> $DIR/remove-extern-crate.rs:32:5
|
2018-08-24 16:00:15 -05:00
|
|
|
|
|
|
|
|
LL | extern crate core;
|
|
|
|
| ^^^^^^^^^^^^^^^^^^ help: convert it to a `use`
|
|
|
|
|