forked from rust-lang/rust-clippy
-
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
try macro is deprecated now, so Clippy will drop the support for it also
- Loading branch information
Showing
7 changed files
with
21 additions
and
43 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,43 +1,28 @@ | ||
error: handle written amount returned or use `Write::write_all` instead | ||
--> $DIR/unused_io_amount.rs:7:5 | ||
| | ||
LL | r#try!(s.write(b"test")); | ||
| ^^^^^^^^^^^^^^^^^^^^^^^^^ | ||
LL | s.write(b"test")?; | ||
| ^^^^^^^^^^^^^^^^^ | ||
| | ||
= note: `-D clippy::unused-io-amount` implied by `-D warnings` | ||
= note: this error originates in a macro outside of the current crate (in Nightly builds, run with -Z external-macro-backtrace for more info) | ||
|
||
error: handle read amount returned or use `Read::read_exact` instead | ||
--> $DIR/unused_io_amount.rs:9:5 | ||
| | ||
LL | r#try!(s.read(&mut buf)); | ||
| ^^^^^^^^^^^^^^^^^^^^^^^^^ | ||
| | ||
= note: this error originates in a macro outside of the current crate (in Nightly builds, run with -Z external-macro-backtrace for more info) | ||
|
||
error: handle written amount returned or use `Write::write_all` instead | ||
--> $DIR/unused_io_amount.rs:14:5 | ||
| | ||
LL | s.write(b"test")?; | ||
| ^^^^^^^^^^^^^^^^^ | ||
|
||
error: handle read amount returned or use `Read::read_exact` instead | ||
--> $DIR/unused_io_amount.rs:16:5 | ||
| | ||
LL | s.read(&mut buf)?; | ||
| ^^^^^^^^^^^^^^^^^ | ||
|
||
error: handle written amount returned or use `Write::write_all` instead | ||
--> $DIR/unused_io_amount.rs:21:5 | ||
--> $DIR/unused_io_amount.rs:14:5 | ||
| | ||
LL | s.write(b"test").unwrap(); | ||
| ^^^^^^^^^^^^^^^^^^^^^^^^^ | ||
|
||
error: handle read amount returned or use `Read::read_exact` instead | ||
--> $DIR/unused_io_amount.rs:23:5 | ||
--> $DIR/unused_io_amount.rs:16:5 | ||
| | ||
LL | s.read(&mut buf).unwrap(); | ||
| ^^^^^^^^^^^^^^^^^^^^^^^^^ | ||
|
||
error: aborting due to 6 previous errors | ||
error: aborting due to 4 previous errors | ||
|