* decl.c (make_typename_type): s/parameters/arguments/.
[official-gcc.git] / gcc / testsuite / g++.dg / cpp0x / defaulted9.C
blob8d3aef8904111c54776dce4de8578b792ea8fec7
1 // PR c++/39153
2 // { dg-do compile { target c++11 } }
3 // { dg-options "-fno-inline" }
5 struct _Impl_base
7   _Impl_base() = default;
8   virtual ~_Impl_base();
9 };
11 inline _Impl_base::~_Impl_base() = default;
13 template<typename _Tp>
14 class _Impl : public _Impl_base
15 { };
17 int main()
19   _Impl<int> i;
20   return 0;