2019-01-12 15:58:45 -06:00
|
|
|
error: `extern crate` is not idiomatic in the new edition
|
|
|
|
--> $DIR/extern-crate-used.rs:8:1
|
|
|
|
|
|
2019-03-09 06:03:44 -06:00
|
|
|
LL | extern crate core as iso1;
|
2019-01-12 15:58:45 -06:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^ help: convert it to a `use`
|
|
|
|
|
|
|
|
|
note: lint level defined here
|
|
|
|
--> $DIR/extern-crate-used.rs:6:9
|
|
|
|
|
|
|
|
|
LL | #![deny(unused_extern_crates)]
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
error: `extern crate` is not idiomatic in the new edition
|
|
|
|
--> $DIR/extern-crate-used.rs:9:1
|
|
|
|
|
|
2019-03-09 06:03:44 -06:00
|
|
|
LL | extern crate core as iso2;
|
2019-01-12 15:58:45 -06:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^ help: convert it to a `use`
|
|
|
|
|
|
|
|
error: `extern crate` is not idiomatic in the new edition
|
|
|
|
--> $DIR/extern-crate-used.rs:10:1
|
|
|
|
|
|
2019-03-09 06:03:44 -06:00
|
|
|
LL | extern crate core as iso3;
|
2019-01-12 15:58:45 -06:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^ help: convert it to a `use`
|
|
|
|
|
|
|
|
error: `extern crate` is not idiomatic in the new edition
|
|
|
|
--> $DIR/extern-crate-used.rs:11:1
|
|
|
|
|
|
2019-03-09 06:03:44 -06:00
|
|
|
LL | extern crate core as iso4;
|
2019-01-12 15:58:45 -06:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^ help: convert it to a `use`
|
|
|
|
|
|
|
|
error: unused extern crate
|
|
|
|
--> $DIR/extern-crate-used.rs:14:1
|
|
|
|
|
|
2019-03-09 06:03:44 -06:00
|
|
|
LL | extern crate core;
|
2019-01-12 15:58:45 -06:00
|
|
|
| ^^^^^^^^^^^^^^^^^^ help: remove it
|
|
|
|
|
|
|
|
error: aborting due to 5 previous errors
|
|
|
|
|