| 5 | #include <cstddef> |
| 6 | |
| 7 | int main() |
| 8 | { |
| 9 | const char cArray[]{"Hello, C++20"}; // #A Compiler deduces the size |
| 10 | // #B We need to specify the size |
| 11 | const std::array<char, 13> array{"Hello, C++20"}; |
| 12 | } |
nothing calls this directly
no outgoing calls
no test coverage detected