]> git.lizzy.rs Git - rust.git/blobdiff - tests/ui/unused_io_amount.stderr
iterate List by value
[rust.git] / tests / ui / unused_io_amount.stderr
index 48a5751579ca734f9ab74b680d1df1e19b511ca4..5219d63980b4b164f2f9411a59fac8d95a55ccd1 100644 (file)
@@ -1,43 +1,40 @@
-error: handle written amount returned or use `Write::write_all` instead
-  --> $DIR/unused_io_amount.rs:11:5
+error: written amount is not handled. Use `Write::write_all` instead
+  --> $DIR/unused_io_amount.rs:7:5
    |
-11 |     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:13:5
-   |
-13 |     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:18:5
+error: read amount is not handled. Use `Read::read_exact` instead
+  --> $DIR/unused_io_amount.rs:9:5
    |
-18 |     s.write(b"test")?;
+LL |     s.read(&mut buf)?;
    |     ^^^^^^^^^^^^^^^^^
 
-error: handle read amount returned or use `Read::read_exact` instead
-  --> $DIR/unused_io_amount.rs:20:5
+error: written amount is not handled. Use `Write::write_all` instead
+  --> $DIR/unused_io_amount.rs:14:5
    |
-20 |     s.read(&mut buf)?;
-   |     ^^^^^^^^^^^^^^^^^
+LL |     s.write(b"test").unwrap();
+   |     ^^^^^^^^^^^^^^^^^^^^^^^^^
 
-error: handle written amount returned or use `Write::write_all` instead
-  --> $DIR/unused_io_amount.rs:25:5
+error: read amount is not handled. Use `Read::read_exact` instead
+  --> $DIR/unused_io_amount.rs:16:5
    |
-25 |     s.write(b"test").unwrap();
+LL |     s.read(&mut buf).unwrap();
    |     ^^^^^^^^^^^^^^^^^^^^^^^^^
 
-error: handle read amount returned or use `Read::read_exact` instead
-  --> $DIR/unused_io_amount.rs:27:5
+error: read amount is not handled
+  --> $DIR/unused_io_amount.rs:20:5
    |
-27 |     s.read(&mut buf).unwrap();
-   |     ^^^^^^^^^^^^^^^^^^^^^^^^^
+LL |     s.read_vectored(&mut [io::IoSliceMut::new(&mut [])])?;
+   |     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
+
+error: written amount is not handled
+  --> $DIR/unused_io_amount.rs:21:5
+   |
+LL |     s.write_vectored(&[io::IoSlice::new(&[])])?;
+   |     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
 
 error: aborting due to 6 previous errors