rust-clippy/tests/ui/needless_update.rs

18 lines
240 B
Rust
Raw Normal View History

2017-09-18 10:47:33 +00:00
#![warn(needless_update)]
2015-10-28 16:50:00 +00:00
#![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
2017-02-08 13:58:07 +00:00
S { a: 1, b: 1, ..base };
}