| 1 | void foo() { |
| 2 | []() { |
| 3 | // (void)X{1, 2, 3}; // => X(std::initializer_list<int>{1, 2, 3}) |
| 4 | // (void)X{nullptr, 0}; // => X(nullptr, 0) |
| 5 | // takes_y({1, 2}); // => Y _tmp = {1, 2}; takes_y(_tmp); |
| 6 | }(); |
| 7 | } |
| 8 | |
| 9 |
nothing calls this directly
no outgoing calls
no test coverage detected