()
| 8 | } |
| 9 | |
| 10 | fn main() { |
| 11 | let mut a = A { x: 1, y: 2 }; |
| 12 | a.x += 2; |
| 13 | let a_updated = A { y: 4, ..a }; |
| 14 | println!("a.x {} a_updated.x {}", a.x, a_updated.x); |
| 15 | println!("a.y {} a_updated.y {}", a.y, a_updated.y); |
| 16 | } |
nothing calls this directly
no outgoing calls
no test coverage detected