mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-10 15:14:29 +00:00
17 lines
240 B
Rust
17 lines
240 B
Rust
|
|
|
|
|
|
#![warn(needless_update)]
|
|
#![allow(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 };
|
|
}
|