"Variable length array for a non POD (plain old data) element" build failure(s)
clang 12.0.1
The following code is
not (and won't) supported by clang.
#include <vector>
void foo() {
int N=2;
std::vector<int> best[2][N];
}
No error detect for version 12.0.1
0 errors