2018-08-24 21:00:15 +00:00
|
|
|
warning: unused extern crate
|
2018-12-25 15:56:47 +00:00
|
|
|
--> $DIR/remove-extern-crate.rs:10:1
|
2018-08-24 21:00:15 +00:00
|
|
|
|
|
|
|
|
LL | extern crate core;
|
|
|
|
| ^^^^^^^^^^^^^^^^^^ help: remove it
|
|
|
|
|
|
|
|
|
note: lint level defined here
|
2018-12-25 15:56:47 +00:00
|
|
|
--> $DIR/remove-extern-crate.rs:8:9
|
2018-08-24 21:00:15 +00:00
|
|
|
|
|
|
|
|
LL | #![warn(rust_2018_idioms)]
|
|
|
|
| ^^^^^^^^^^^^^^^^
|
|
|
|
= note: #[warn(unused_extern_crates)] implied by #[warn(rust_2018_idioms)]
|
|
|
|
|
|
|
|
warning: `extern crate` is not idiomatic in the new edition
|
2018-12-25 15:56:47 +00:00
|
|
|
--> $DIR/remove-extern-crate.rs:11:1
|
2018-08-24 21:00:15 +00:00
|
|
|
|
|
|
|
|
LL | extern crate core as another_name;
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: convert it to a `use`
|
|
|
|
|
|
|
|
warning: `extern crate` is not idiomatic in the new edition
|
2018-12-25 15:56:47 +00:00
|
|
|
--> $DIR/remove-extern-crate.rs:29:5
|
2018-08-24 21:00:15 +00:00
|
|
|
|
|
|
|
|
LL | extern crate core;
|
|
|
|
| ^^^^^^^^^^^^^^^^^^ help: convert it to a `use`
|
|
|
|
|