mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-11 07:34:18 +00:00
38d4ac7cea
Discussion previously happened in https://github.com/rust-lang/rust/pull/43498
14 lines
253 B
Rust
14 lines
253 B
Rust
#![warn(clippy::needless_update)]
|
|
#![allow(clippy::no_effect)]
|
|
|
|
struct S {
|
|
pub a: i32,
|
|
pub b: i32,
|
|
}
|
|
|
|
fn main() {
|
|
let base = S { a: 0, b: 0 };
|
|
S { ..base }; // no error
|
|
S { a: 1, ..base }; // no error
|
|
S { a: 1, b: 1, ..base };
|
|
}
|