OSDN Git Service

PR c++/36628
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / g++.dg / cpp0x / variadic38.C
1 // { dg-options "-std=gnu++0x" }
2 template<int... Values>
3 struct int_vec {};
4
5 template<int... Values>
6 struct int_vec<0, (Values+1)...> {}; // { dg-error "involves template parameter" }