blob: 4305b59a0ec118bfc7928a81a436d078648d0faf [file] [log] [blame]
// Core 1591
// { dg-require-effective-target c++11 }
template<class T, int N> void g(T const (&)[N]);
void f() {
g( { 1, 2, 3, 4 } );
}