repo.or.cz
/
official-gcc.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Merge from trunk
[official-gcc.git]
/
gcc
/
testsuite
/
g++.dg
/
cpp0x
/
defaulted48.C
blob
727afc5ca55b2dbd9191908de05b7d4ffe1023f0
1
// PR c++/60108
2
// { dg-require-effective-target c++11 }
3
4
template<int> struct A
5
{
6
virtual ~A();
7
};
8
9
template<typename> struct B : A<0>, A<1>
10
{
11
~B() = default;
12
};
13
14
struct C : B<bool>
15
{
16
C() {}
17
};