| 2 | #include <type_traits> |
| 3 | |
| 4 | int main() |
| 5 | { |
| 6 | std::cout << std::rank<int[1][2][3]>::value << '\n'; |
| 7 | std::cout << std::rank<int[][2][3][4]>::value << '\n'; |
| 8 | std::cout << std::rank<int>::value << '\n'; |
| 9 | } |
nothing calls this directly
no outgoing calls
no test coverage detected