]> git.lizzy.rs Git - rust.git/blob - src/tools/clippy/tests/ui/needless_update.stderr
Auto merge of #74777 - ssomers:btree_cleanup_7, r=Mark-Simulacrum
[rust.git] / src / tools / clippy / tests / ui / needless_update.stderr
1 error: struct update has no effect, all the fields in the struct have already been specified
2   --> $DIR/needless_update.rs:13:23
3    |
4 LL |     S { a: 1, b: 1, ..base };
5    |                       ^^^^
6    |
7    = note: `-D clippy::needless-update` implied by `-D warnings`
8
9 error: aborting due to previous error
10