rust/src/test/ui/rust-2018/macro-use-warned-against.stderr

26 lines
759 B
Plaintext
Raw Normal View History

warning: deprecated `#[macro_use]` directive used to import macros should be replaced at use sites with a `use` statement to import the macro instead
2018-12-25 15:56:47 +00:00
--> $DIR/macro-use-warned-against.rs:7:1
|
2019-03-09 12:03:44 +00:00
LL | #[macro_use]
| ^^^^^^^^^^^^
|
note: lint level defined here
2018-12-25 15:56:47 +00:00
--> $DIR/macro-use-warned-against.rs:5:9
|
LL | #![warn(macro_use_extern_crate, unused)]
| ^^^^^^^^^^^^^^^^^^^^^^
warning: unused `#[macro_use]` import
2018-12-25 15:56:47 +00:00
--> $DIR/macro-use-warned-against.rs:9:1
|
2019-03-09 12:03:44 +00:00
LL | #[macro_use]
| ^^^^^^^^^^^^
|
note: lint level defined here
2018-12-25 15:56:47 +00:00
--> $DIR/macro-use-warned-against.rs:5:33
|
LL | #![warn(macro_use_extern_crate, unused)]
| ^^^^^^
= note: #[warn(unused_imports)] implied by #[warn(unused)]