2018-08-24 21:00:15 +00:00
|
|
|
warning: unused extern crate
|
2023-03-29 20:18:20 +00:00
|
|
|
--> $DIR/remove-extern-crate.rs:10:1
|
2018-08-24 21:00:15 +00:00
|
|
|
|
|
|
|
|
LL | extern crate core;
|
|
|
|
| ^^^^^^^^^^^^^^^^^^ help: remove it
|
|
|
|
|
|
2020-01-22 23:57:38 +00:00
|
|
|
note: the lint level is defined here
|
2019-04-03 17:50:28 +00:00
|
|
|
--> $DIR/remove-extern-crate.rs:7:9
|
2018-08-24 21:00:15 +00:00
|
|
|
|
|
|
|
|
LL | #![warn(rust_2018_idioms)]
|
|
|
|
| ^^^^^^^^^^^^^^^^
|
2019-07-16 20:17:38 +00:00
|
|
|
= note: `#[warn(unused_extern_crates)]` implied by `#[warn(rust_2018_idioms)]`
|
2018-08-24 21:00:15 +00:00
|
|
|
|
|
|
|
warning: `extern crate` is not idiomatic in the new edition
|
2023-03-29 20:18:20 +00:00
|
|
|
--> $DIR/remove-extern-crate.rs:34:5
|
2018-08-24 21:00:15 +00:00
|
|
|
|
|
|
|
|
LL | extern crate core;
|
2023-02-22 20:25:10 +00:00
|
|
|
| ^^^^^^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
|
help: convert it to a `use`
|
|
|
|
|
|
|
|
|
LL | use core;
|
|
|
|
| ~~~
|
|
|
|
|
|
|
|
warning: `extern crate` is not idiomatic in the new edition
|
2023-03-29 20:18:20 +00:00
|
|
|
--> $DIR/remove-extern-crate.rs:44:5
|
2023-02-22 20:25:10 +00:00
|
|
|
|
|
|
|
|
LL | pub extern crate core;
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
|
help: convert it to a `use`
|
|
|
|
|
|
|
|
|
LL | pub use core;
|
|
|
|
| ~~~
|
2018-08-24 21:00:15 +00:00
|
|
|
|
2023-02-22 20:25:10 +00:00
|
|
|
warning: 3 warnings emitted
|
2020-03-11 15:30:09 +00:00
|
|
|
|