"Variable length array for a non POD (plain old data) element" build failure(s)
clang 11.0.0
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 11.0.0
0 errors