Sign in
gnu
/
gcc
/
ab810952eb7c061e37054ddd1dfe0aa033365131
/
.
/
gcc
/
testsuite
/
g++.dg
/
cpp0x
/
defaulted48.C
blob: 727afc5ca55b2dbd9191908de05b7d4ffe1023f0 [
file
] [
log
] [
blame
]
// 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
()
{}
};