2018-07-28 10:34:52 -05:00
|
|
|
#![warn(clippy::needless_update)]
|
2023-03-24 08:04:35 -05:00
|
|
|
#![allow(clippy::no_effect, clippy::unnecessary_struct_initialization)]
|
2015-10-21 10:25:16 -05:00
|
|
|
|
|
|
|
struct S {
|
|
|
|
pub a: i32,
|
|
|
|
pub b: i32,
|
|
|
|
}
|
|
|
|
|
2020-12-20 10:19:49 -06:00
|
|
|
#[non_exhaustive]
|
|
|
|
struct T {
|
|
|
|
pub x: i32,
|
|
|
|
pub y: i32,
|
|
|
|
}
|
|
|
|
|
2015-10-21 10:25:16 -05:00
|
|
|
fn main() {
|
|
|
|
let base = S { a: 0, b: 0 };
|
|
|
|
S { ..base }; // no error
|
|
|
|
S { a: 1, ..base }; // no error
|
2017-02-08 07:58:07 -06:00
|
|
|
S { a: 1, b: 1, ..base };
|
2023-08-24 14:32:12 -05:00
|
|
|
//~^ ERROR: struct update has no effect, all the fields in the struct have already bee
|
|
|
|
//~| NOTE: `-D clippy::needless-update` implied by `-D warnings`
|
2020-12-20 10:19:49 -06:00
|
|
|
|
|
|
|
let base = T { x: 0, y: 0 };
|
|
|
|
T { ..base }; // no error
|
|
|
|
T { x: 1, ..base }; // no error
|
|
|
|
T { x: 1, y: 1, ..base }; // no error
|
2015-10-21 10:25:16 -05:00
|
|
|
}
|