| 2 | |
| 3 | template<typename T, bool array> |
| 4 | class Alloc |
| 5 | { |
| 6 | const int z; |
| 7 | T* data{nullptr}; |
| 8 | const bool x{false}; |
| 9 | |
| 10 | public: |
| 11 | Alloc() : z{2} |
| 12 | { |
| 13 | } |
| 14 | }; |
| 15 | |
| 16 | int main() |
| 17 | { |
nothing calls this directly
no outgoing calls
no test coverage detected