OSDN Git Service

PR c++/36628
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / g++.dg / cpp0x / vt-35024.C
1 // { dg-options "-std=c++0x" }
2 template<typename... T> int foo()
3 {
4   typename T::X x; // { dg-error "parameter packs|T" }
5   return x;
6 }
7
8 void bar()
9 {
10   foo<int>();
11 }