rust/src/test/ui/imports/extern-crate-used.stderr

39 lines
1.1 KiB
Plaintext
Raw Normal View History

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;
| ^^^^^^^^^^^^^^^^^^^^^^^^^^ 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;
| ^^^^^^^^^^^^^^^^^^^^^^^^^^ 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;
| ^^^^^^^^^^^^^^^^^^^^^^^^^^ 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;
| ^^^^^^^^^^^^^^^^^^^^^^^^^^ 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;
| ^^^^^^^^^^^^^^^^^^ help: remove it
error: aborting due to 5 previous errors