blob: 8d3aef8904111c54776dce4de8578b792ea8fec7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
// PR c++/39153
// { dg-do compile { target c++11 } }
// { dg-options "-fno-inline" }
struct _Impl_base
{
_Impl_base() = default;
virtual ~_Impl_base();
};
inline _Impl_base::~_Impl_base() = default;
template<typename _Tp>
class _Impl : public _Impl_base
{ };
int main()
{
_Impl<int> i;
return 0;
}
|