2017-05-17 12:19:44 +00:00
|
|
|
error: handle written amount returned or use `Write::write_all` instead
|
2019-01-07 21:33:18 +00:00
|
|
|
--> $DIR/unused_io_amount.rs:7:5
|
2017-05-17 12:19:44 +00:00
|
|
|
|
|
2019-07-22 19:59:09 +00:00
|
|
|
LL | r#try!(s.write(b"test"));
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^
|
2017-05-17 12:19:44 +00:00
|
|
|
|
|
2018-08-01 14:30:44 +00:00
|
|
|
= note: `-D clippy::unused-io-amount` implied by `-D warnings`
|
2017-11-29 14:45:12 +00:00
|
|
|
= note: this error originates in a macro outside of the current crate (in Nightly builds, run with -Z external-macro-backtrace for more info)
|
2017-05-17 12:19:44 +00:00
|
|
|
|
|
|
|
error: handle read amount returned or use `Read::read_exact` instead
|
2019-01-07 21:33:18 +00:00
|
|
|
--> $DIR/unused_io_amount.rs:9:5
|
2017-05-17 12:19:44 +00:00
|
|
|
|
|
2019-07-22 19:59:09 +00:00
|
|
|
LL | r#try!(s.read(&mut buf));
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^
|
2017-05-17 12:19:44 +00:00
|
|
|
|
|
2017-11-29 14:45:12 +00:00
|
|
|
= note: this error originates in a macro outside of the current crate (in Nightly builds, run with -Z external-macro-backtrace for more info)
|
2017-05-17 12:19:44 +00:00
|
|
|
|
|
|
|
error: handle written amount returned or use `Write::write_all` instead
|
2019-01-07 21:33:18 +00:00
|
|
|
--> $DIR/unused_io_amount.rs:14:5
|
2017-05-17 12:19:44 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | s.write(b"test")?;
|
2017-05-17 12:19:44 +00:00
|
|
|
| ^^^^^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
error: handle read amount returned or use `Read::read_exact` instead
|
2019-01-07 21:33:18 +00:00
|
|
|
--> $DIR/unused_io_amount.rs:16:5
|
2017-05-17 12:19:44 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | s.read(&mut buf)?;
|
2017-05-17 12:19:44 +00:00
|
|
|
| ^^^^^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
error: handle written amount returned or use `Write::write_all` instead
|
2019-01-07 21:33:18 +00:00
|
|
|
--> $DIR/unused_io_amount.rs:21:5
|
2017-05-17 12:19:44 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | s.write(b"test").unwrap();
|
2017-05-17 12:19:44 +00:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
error: handle read amount returned or use `Read::read_exact` instead
|
2019-01-07 21:33:18 +00:00
|
|
|
--> $DIR/unused_io_amount.rs:23:5
|
2017-05-17 12:19:44 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | s.read(&mut buf).unwrap();
|
2017-05-17 12:19:44 +00:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
2018-01-16 16:06:27 +00:00
|
|
|
error: aborting due to 6 previous errors
|
|
|
|
|