()
| 35 | T: std::fmt::Debug; |
| 36 | |
| 37 | pub fn z() { |
| 38 | let x = Baz::builder().set_0(&1).set_1(Some(2)).build(); |
| 39 | println!("{:?} {:?}", x.0, x.1); |
| 40 | let x = Baz::builder().set_0(&1).build(); |
| 41 | println!("{:?} {:?}", x.0, x.1); |
| 42 | } |
| 43 | |
| 44 | fn main() { |
| 45 | x(); |
nothing calls this directly
no outgoing calls
no test coverage detected