]> git.lizzy.rs Git - rust.git/blobdiff - clippy_tests/examples/temporary_assignment.stderr
Fix the test suite after cargo update
[rust.git] / clippy_tests / examples / temporary_assignment.stderr
index ad19e7fac5ac0a6206b5abe3f6728dde1bf85e92..f901434cb6d6b193ea47f8fc07f24da6d98d49f2 100644 (file)
@@ -1,5 +1,5 @@
 error: assignment to temporary
-  --> examples/temporary_assignment.rs:29:5
+  --> temporary_assignment.rs:29:5
    |
 29 |     Struct { field: 0 }.field = 1;
    |     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
@@ -7,15 +7,14 @@ error: assignment to temporary
    = note: `-D temporary-assignment` implied by `-D warnings`
 
 error: assignment to temporary
-  --> examples/temporary_assignment.rs:30:5
+  --> temporary_assignment.rs:30:5
    |
 30 |     (0, 0).0 = 1;
    |     ^^^^^^^^^^^^
    |
    = note: `-D temporary-assignment` implied by `-D warnings`
 
-error: aborting due to 2 previous errors
+error: aborting due to previous error(s)
 
-error: Could not compile `clippy_tests`.
 
 To learn more, run the command again with --verbose.