| 28 | //-> |
| 29 | |
| 30 | struct T { |
| 31 | T(std::unique_ptr<i1> i1, std::unique_ptr<i2> i2, int i) : i1_(std::move(i1)), i2_(std::move(i2)), i(i) {} |
| 32 | |
| 33 | std::unique_ptr<i1> i1_; |
| 34 | std::unique_ptr<i2> i2_; |
| 35 | int i = 0; |
| 36 | }; |
| 37 | |
| 38 | // clang-format off |
| 39 | auto module1 = [] { |
no outgoing calls
no test coverage detected