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-08-15 03:04:47 -05:00
|
|
|
LL | 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-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
|
|
|
|
|
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-08-15 03:04:47 -05: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").unwrap();
|
2017-05-17 07:19:44 -05:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
error: handle read amount returned or use `Read::read_exact` instead
|
2019-08-15 03:04:47 -05: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).unwrap();
|
2017-05-17 07:19:44 -05:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
2019-08-15 03:04:47 -05:00
|
|
|
error: aborting due to 4 previous errors
|
2018-01-16 10:06:27 -06:00
|
|
|
|