blob: a76c3c87a47031fd2df04f580dbdbf62272a98b3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
error: unused import: `super::f`
--> $DIR/unused.rs:7:24
|
LL | pub(super) use super::f;
| ^^^^^^^^
|
note: the lint level is defined here
--> $DIR/unused.rs:1:9
|
LL | #![deny(unused)]
| ^^^^^^
= note: `#[deny(unused_imports)]` implied by `#[deny(unused)]`
error: aborting due to 1 previous error
|