OSDN Git Service

PR c++/36628
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / g++.dg / cpp0x / pr32252.C
1 // { dg-options "-std=c++0x" }
2 int x[5];
3
4 template<int M, int N, int (&... p)[N]> struct A;
5
6 template<int M> struct A<M,5,x> {};
7
8 A<0,5,x> a;