aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/g++.dg/cpp0x/initlist74.C
blob: 4305b59a0ec118bfc7928a81a436d078648d0faf (plain)
1
2
3
4
5
6
7
// 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 } );
}