]> git.lizzy.rs Git - rust.git/blob - tests/ui/imports/unused-macro-use.stderr
Rollup merge of #106958 - jyn514:labels, r=m-ou-se
[rust.git] / tests / ui / imports / unused-macro-use.stderr
1 error: unused `#[macro_use]` import
2   --> $DIR/unused-macro-use.rs:3:1
3    |
4 LL | #[macro_use]
5    | ^^^^^^^^^^^^
6    |
7 note: the lint level is defined here
8   --> $DIR/unused-macro-use.rs:1:9
9    |
10 LL | #![deny(unused)]
11    |         ^^^^^^
12    = note: `#[deny(unused_imports)]` implied by `#[deny(unused)]`
13
14 error: unused `#[macro_use]` import
15   --> $DIR/unused-macro-use.rs:7:5
16    |
17 LL |     panic
18    |     ^^^^^
19
20 error: aborting due to 2 previous errors
21