1 // { dg-do compile { target c++11 } }
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;
9