aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.8.1/gcc/testsuite/g++.dg/cpp0x/pr32252.C
blob: 543dc8873908e3052ad72690d117f6d56a7d7208 (plain)
1
2
3
4
5
6
7
8
// { dg-options "-std=c++0x" }
int x[5];

template<int M, int N, int (&... p)[N]> struct A;

template<int M> struct A<M,5,x> {};

A<0,5,x> a;