aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/g++.dg/cpp0x/defaulted48.C
blob: 727afc5ca55b2dbd9191908de05b7d4ffe1023f0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// PR c++/60108
// { dg-require-effective-target c++11 }

template<int> struct A
{
  virtual ~A();
};

template<typename> struct B : A<0>, A<1>
{
  ~B() = default;
};

struct C : B<bool>
{
  C() {}
};