aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.6/gcc/testsuite/g++.dg/cpp0x/variadic-ex2.C
blob: ca5fa27163729603f7883204a6917151b1fb25ab (plain)
1
2
3
4
5
6
7
8
// { dg-options "-std=gnu++0x" }
template<class... Types> struct B { // { dg-error "declaration of" }
  void f3();
  void f4();
};

template<class... Types> void B<Types...>::f3() { } // OK
template<class... Types> void B<Types>::f4() { } // { dg-error "invalid" }