summaryrefslogtreecommitdiffstats
path: root/src/test/ui/lint/unused/issue-46576.stderr
blob: 6f4d97068b353647a13ea00dd9cff2e216bafb3c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
error: unused import: `BufRead`
  --> $DIR/issue-46576.rs:5:15
   |
LL | use std::io::{BufRead, BufReader, Read};
   |               ^^^^^^^
   |
note: the lint level is defined here
  --> $DIR/issue-46576.rs:2:9
   |
LL | #![deny(unused_imports)]
   |         ^^^^^^^^^^^^^^

error: aborting due to previous error