]> git.lizzy.rs Git - rust.git/blobdiff - tests/ui/mixed_read_write_in_expression.stderr
Move MSRV tests into the lint specific test files
[rust.git] / tests / ui / mixed_read_write_in_expression.stderr
index 2e951cdbcbfd78c849edbca9f734312e0f3aa1a1..8cc68b0ac7b4352d3663ad35b605cedc6dd92a10 100644 (file)
@@ -4,12 +4,12 @@ error: unsequenced read of `x`
 LL |     } + x;
    |         ^
    |
-   = note: `-D clippy::mixed-read-write-in-expression` implied by `-D warnings`
 note: whether read occurs before this write depends on evaluation order
   --> $DIR/mixed_read_write_in_expression.rs:12:9
    |
 LL |         x = 1;
    |         ^^^^^
+   = note: `-D clippy::mixed-read-write-in-expression` implied by `-D warnings`
 
 error: unsequenced read of `x`
   --> $DIR/mixed_read_write_in_expression.rs:17:5