]> git.lizzy.rs Git - rust.git/blob - tests/ui/unused_io_amount.stderr
Auto merge of #3635 - matthiaskrgr:revert_random_state_3603, r=xfix
[rust.git] / tests / ui / unused_io_amount.stderr
1 error: handle written amount returned or use `Write::write_all` instead
2   --> $DIR/unused_io_amount.rs:16:5
3    |
4 LL |     try!(s.write(b"test"));
5    |     ^^^^^^^^^^^^^^^^^^^^^^^
6    |
7    = note: `-D clippy::unused-io-amount` implied by `-D warnings`
8    = note: this error originates in a macro outside of the current crate (in Nightly builds, run with -Z external-macro-backtrace for more info)
9
10 error: handle read amount returned or use `Read::read_exact` instead
11   --> $DIR/unused_io_amount.rs:18:5
12    |
13 LL |     try!(s.read(&mut buf));
14    |     ^^^^^^^^^^^^^^^^^^^^^^^
15    |
16    = note: this error originates in a macro outside of the current crate (in Nightly builds, run with -Z external-macro-backtrace for more info)
17
18 error: handle written amount returned or use `Write::write_all` instead
19   --> $DIR/unused_io_amount.rs:23:5
20    |
21 LL |     s.write(b"test")?;
22    |     ^^^^^^^^^^^^^^^^^
23
24 error: handle read amount returned or use `Read::read_exact` instead
25   --> $DIR/unused_io_amount.rs:25:5
26    |
27 LL |     s.read(&mut buf)?;
28    |     ^^^^^^^^^^^^^^^^^
29
30 error: handle written amount returned or use `Write::write_all` instead
31   --> $DIR/unused_io_amount.rs:30:5
32    |
33 LL |     s.write(b"test").unwrap();
34    |     ^^^^^^^^^^^^^^^^^^^^^^^^^
35
36 error: handle read amount returned or use `Read::read_exact` instead
37   --> $DIR/unused_io_amount.rs:32:5
38    |
39 LL |     s.read(&mut buf).unwrap();
40    |     ^^^^^^^^^^^^^^^^^^^^^^^^^
41
42 error: aborting due to 6 previous errors
43