| 47 | using Base = ContainerWrapper<Container, Args...>; |
| 48 | using value_type = typename Base::value_type; |
| 49 | void push_back(value_type const &newVal) { |
| 50 | Base::container().push_back(newVal); |
| 51 | } |
| 52 | }; |
| 53 | |
| 54 | static_assert( |
no outgoing calls
no test coverage detected