aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/g++.dg/cpp0x/vt-35242.C
blob: 9af855e3b09ecabf4524ef25eef423e004609670 (plain)
1
2
3
4
5
6
7
// { dg-do compile { target c++11 } }
struct A
{
  template<typename... T> struct B;
};

template<typename... T> struct A::B<T*> {}; // { dg-error "parameter packs|T" }