rust/tests/ui/lint/unused/issue-46576.stderr

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

15 lines
316 B
Plaintext
Raw Normal View History

error: unused import: `BufRead`
2020-10-27 13:10:31 +00:00
--> $DIR/issue-46576.rs:5:15
|
2018-02-23 03:42:32 +03:00
LL | use std::io::{BufRead, BufReader, Read};
| ^^^^^^^
|
2020-01-22 23:57:38 +00:00
note: the lint level is defined here
2020-10-27 13:10:31 +00:00
--> $DIR/issue-46576.rs:2:9
|
2018-02-23 03:42:32 +03:00
LL | #![deny(unused_imports)]
| ^^^^^^^^^^^^^^
error: aborting due to previous error