()
| 29 | } |
| 30 | |
| 31 | fn main() { |
| 32 | let d1 = D::new(1, 2, None); |
| 33 | let d2 = D { |
| 34 | x: 1, |
| 35 | y: 2, |
| 36 | ..D::default() |
| 37 | }; |
| 38 | assert_eq!(d1, d2); |
| 39 | println!("{:?} {:?}", d1, d2); |
| 40 | println!("{:?}", d1 + d2); |
| 41 | } |
nothing calls this directly
no outgoing calls
no test coverage detected