2018-07-28 10:34:52 -05:00
|
|
|
#![warn(clippy::needless_update)]
|
2023-03-11 05:44:18 -06: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-17 21:09:55 -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-07-28 14:35:48 -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-17 21:09:55 -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
|
|
|
}
|