2017-05-17 07:19:44 -05:00
|
|
|
error: handle written amount returned or use `Write::write_all` instead
|
2019-01-07 15:33:18 -06:00
|
|
|
--> $DIR/unused_io_amount.rs:7:5
|
2017-05-17 07:19:44 -05:00
|
|
|
|
|
2019-07-22 14:59:09 -05:00
|
|
|
LL | r#try!(s.write(b"test"));
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^
|
2017-05-17 07:19:44 -05:00
|
|
|
|
|
2018-08-01 09:30:44 -05:00
|
|
|
= note: `-D clippy::unused-io-amount` implied by `-D warnings`
|
2017-11-29 08:45:12 -06: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 07:19:44 -05:00
|
|
|
|
|
|
|
error: handle read amount returned or use `Read::read_exact` instead
|
2019-01-07 15:33:18 -06:00
|
|
|
--> $DIR/unused_io_amount.rs:9:5
|
2017-05-17 07:19:44 -05:00
|
|
|
|
|
2019-07-22 14:59:09 -05:00
|
|
|
LL | r#try!(s.read(&mut buf));
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^
|
2017-05-17 07:19:44 -05:00
|
|
|
|
|
2017-11-29 08:45:12 -06: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 07:19:44 -05:00
|
|
|
|
|
|
|
error: handle written amount returned or use `Write::write_all` instead
|
2019-01-07 15:33:18 -06:00
|
|
|
--> $DIR/unused_io_amount.rs:14:5
|
2017-05-17 07:19:44 -05:00
|
|
|
|
|
2018-12-27 09:57:55 -06:00
|
|
|
LL | s.write(b"test")?;
|
2017-05-17 07:19:44 -05:00
|
|
|
| ^^^^^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
error: handle read amount returned or use `Read::read_exact` instead
|
2019-01-07 15:33:18 -06:00
|
|
|
--> $DIR/unused_io_amount.rs:16:5
|
2017-05-17 07:19:44 -05:00
|
|
|
|
|
2018-12-27 09:57:55 -06:00
|
|
|
LL | s.read(&mut buf)?;
|
2017-05-17 07:19:44 -05:00
|
|
|
| ^^^^^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
error: handle written amount returned or use `Write::write_all` instead
|
2019-01-07 15:33:18 -06:00
|
|
|
--> $DIR/unused_io_amount.rs:21:5
|
2017-05-17 07:19:44 -05:00
|
|
|
|
|
2018-12-27 09:57:55 -06:00
|
|
|
LL | s.write(b"test").unwrap();
|
2017-05-17 07:19:44 -05:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
error: handle read amount returned or use `Read::read_exact` instead
|
2019-01-07 15:33:18 -06:00
|
|
|
--> $DIR/unused_io_amount.rs:23:5
|
2017-05-17 07:19:44 -05:00
|
|
|
|
|
2018-12-27 09:57:55 -06:00
|
|
|
LL | s.read(&mut buf).unwrap();
|
2017-05-17 07:19:44 -05:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
2018-01-16 10:06:27 -06:00
|
|
|
error: aborting due to 6 previous errors
|
|
|
|
|