| 532 | explicit Key(int key) : key(key) {} |
| 533 | }; |
| 534 | struct Metric { |
| 535 | int metric; |
| 536 | explicit Metric(int metric) : metric(metric) {} |
| 537 | }; |
| 538 | |
| 539 | IndexedSet<int, int64_t> is; |
| 540 | for (int i = 0; i < 10; ++i) |
no outgoing calls
no test coverage detected