aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/g++.dg/cpp0x/vt-34050.C
blob: 6dec6dfc83dfd0320abb38d8e4d09a850f4cee4b (plain)
1
2
3
4
5
6
7
8
9
// { dg-do compile { target c++11 } }
struct A {};

template<typename... T> struct B : T...
{
  B() : T()... {}
};

B<A> b;