| 17 | typedef std::list<int> IntList; |
| 18 | IntList intList = { 1, 2, 2, 3, 2 }; |
| 19 | bool is_even(int value) |
| 20 | { |
| 21 | return (value % 2 == 0); |
| 22 | } |
| 23 | } |
| 24 | |
| 25 | TEST_CASE("transform_test - replicate_elems") |
nothing calls this directly
no outgoing calls
no test coverage detected