| 31 | // Forwarding default constructor template |
| 32 | template <typename T> requires std::default_initializable<T> && std::destructible<T> |
| 33 | Array<T>::Array() |
| 34 | : Array{0} |
| 35 | {} |
| 36 | |
| 37 | // Constructor template |
| 38 | template <typename T> requires std::default_initializable<T> && std::destructible<T> |
nothing calls this directly
no outgoing calls
no test coverage detected