]> git.lizzy.rs Git - rust.git/blob - src/test/ui/imports/unused-macro-use.stderr
Sync portable-simd to rust-lang/portable-simd@72df4c45056a8bc0d1b3f06fdc828722177f0763
[rust.git] / src / test / 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