]> git.lizzy.rs Git - rust.git/blobdiff - tests/ui/needless_update.stderr
iterate List by value
[rust.git] / tests / ui / needless_update.stderr
index 630d48331cc4b7302b8d46a8154973be473436f7..133c834880dd907d3f797b03d79bbe7c7ecc6d45 100644 (file)
@@ -1,14 +1,10 @@
 error: struct update has no effect, all the fields in the struct have already been specified
-  --> $DIR/needless_update.rs:16:23
+  --> $DIR/needless_update.rs:13:23
    |
-16 |     S { a: 1, b: 1, ..base }; //~ERROR struct update has no effect
+LL |     S { a: 1, b: 1, ..base };
    |                       ^^^^
    |
-note: lint level defined here
-  --> $DIR/needless_update.rs:4:9
-   |
-4  | #![deny(needless_update)]
-   |         ^^^^^^^^^^^^^^^
+   = note: `-D clippy::needless-update` implied by `-D warnings`
 
 error: aborting due to previous error