rust/src/test/ui/rust-2018/extern-crate-idiomatic-in-2018.stderr

22 lines
678 B
Plaintext
Raw Normal View History

error: unused extern crate
2018-12-25 09:56:47 -06:00
--> $DIR/extern-crate-idiomatic-in-2018.rs:12:1
|
LL | extern crate edition_lint_paths;
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: remove it
|
note: lint level defined here
2018-12-25 09:56:47 -06:00
--> $DIR/extern-crate-idiomatic-in-2018.rs:9:9
|
LL | #![deny(rust_2018_idioms)]
| ^^^^^^^^^^^^^^^^
= note: #[deny(unused_extern_crates)] implied by #[deny(rust_2018_idioms)]
error: `extern crate` is not idiomatic in the new edition
2018-12-25 09:56:47 -06:00
--> $DIR/extern-crate-idiomatic-in-2018.rs:15:1
|
LL | extern crate edition_lint_paths as bar;
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: convert it to a `use`
error: aborting due to 2 previous errors