// PR c++/70001 // This is still slow to compile, only run it once. // { dg-do compile { target c++14_only } } #include #include typedef std::complex cd; const int LOG = 17; const int N = (1 << LOG); std::array a; std::array b; void foo (std::array &arr) { std::array, LOG + 1> f; } int main () { foo (a); foo (b); }