rust/src/test/ui/imports/unused-macro-use.stderr

22 lines
445 B
Plaintext
Raw Normal View History

2018-08-08 07:28:26 -05:00
error: unused `#[macro_use]` import
2018-12-25 09:56:47 -06:00
--> $DIR/unused-macro-use.rs:3:1
2018-08-08 07:28:26 -05:00
|
2019-03-09 06:03:44 -06:00
LL | #[macro_use]
2018-08-08 07:28:26 -05:00
| ^^^^^^^^^^^^
|
note: lint level defined here
2018-12-25 09:56:47 -06:00
--> $DIR/unused-macro-use.rs:1:9
2018-08-08 07:28:26 -05:00
|
LL | #![deny(unused)]
| ^^^^^^
= note: `#[deny(unused_imports)]` implied by `#[deny(unused)]`
2018-08-08 07:28:26 -05:00
error: unused `#[macro_use]` import
2018-12-25 09:56:47 -06:00
--> $DIR/unused-macro-use.rs:7:5
2018-08-08 07:28:26 -05:00
|
2019-03-09 06:03:44 -06:00
LL | panic
2018-08-08 07:28:26 -05:00
| ^^^^^
error: aborting due to 2 previous errors