summaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.dg/cpp0x/defaulted9.C
blob: f083479e21d0e53c5e6ec285f3f45ff29f7dbd31 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
// PR c++/39153
// { dg-options "-std=c++0x -fno-inline" }

struct _Impl_base
{
  _Impl_base() = default;
  virtual ~_Impl_base() = default;
};

template<typename _Tp>
class _Impl : public _Impl_base
{ };

int main()
{
  _Impl<int> i;
  return 0;
}