https://gcc.gnu.org/bugzilla/show_bug.cgi?id=59832
gcc-bugzilla at zulan dot net changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |gcc-bugzilla at zulan dot net --- Comment #12 from gcc-bugzilla at zulan dot net --- This shows the same error (tested with gcc 6.1.1): #include<array> template<class T> void foo(T bar) { constexpr auto baz = std::array<int, 1>{{1}}; } int main() { foo(13); }