]> git.lizzy.rs Git - rust.git/blobdiff - tests/ui/unused_io_amount.stderr
Auto merge of #3603 - xfix:random-state-lint, r=phansch
[rust.git] / tests / ui / unused_io_amount.stderr
index 7a5643e831cadc313f2cd8c82793c5f75a9ba51c..528d35ebdef411ba0d2f959e258c57e1e4a7d428 100644 (file)
@@ -1,52 +1,43 @@
 error: handle written amount returned or use `Write::write_all` instead
-  --> $DIR/unused_io_amount.rs:10:5
+  --> $DIR/unused_io_amount.rs:16:5
    |
-10 |     try!(s.write(b"test"));
+LL |     try!(s.write(b"test"));
    |     ^^^^^^^^^^^^^^^^^^^^^^^
    |
-   = note: #[deny(unused_io_amount)] on by default
-   = note: this error originates in a macro outside of the current crate
+   = 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:12:5
+  --> $DIR/unused_io_amount.rs:18:5
    |
-12 |     try!(s.read(&mut buf));
+LL |     try!(s.read(&mut buf));
    |     ^^^^^^^^^^^^^^^^^^^^^^^
    |
-   = note: #[deny(unused_io_amount)] on by default
-   = note: this error originates in a macro outside of the current crate
+   = 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:17:5
+  --> $DIR/unused_io_amount.rs:23:5
    |
-17 |     s.write(b"test")?;
+LL |     s.write(b"test")?;
    |     ^^^^^^^^^^^^^^^^^
-   |
-   = note: #[deny(unused_io_amount)] on by default
 
 error: handle read amount returned or use `Read::read_exact` instead
-  --> $DIR/unused_io_amount.rs:19:5
+  --> $DIR/unused_io_amount.rs:25:5
    |
-19 |     s.read(&mut buf)?;
+LL |     s.read(&mut buf)?;
    |     ^^^^^^^^^^^^^^^^^
-   |
-   = note: #[deny(unused_io_amount)] on by default
 
 error: handle written amount returned or use `Write::write_all` instead
-  --> $DIR/unused_io_amount.rs:24:5
+  --> $DIR/unused_io_amount.rs:30:5
    |
-24 |     s.write(b"test").unwrap();
+LL |     s.write(b"test").unwrap();
    |     ^^^^^^^^^^^^^^^^^^^^^^^^^
-   |
-   = note: #[deny(unused_io_amount)] on by default
 
 error: handle read amount returned or use `Read::read_exact` instead
-  --> $DIR/unused_io_amount.rs:26:5
+  --> $DIR/unused_io_amount.rs:32:5
    |
-26 |     s.read(&mut buf).unwrap();
+LL |     s.read(&mut buf).unwrap();
    |     ^^^^^^^^^^^^^^^^^^^^^^^^^
-   |
-   = note: #[deny(unused_io_amount)] on by default
 
 error: aborting due to 6 previous errors