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
PR c++/85553
[official-gcc.git]
/
gcc
/
testsuite
/
g++.dg
/
cpp0x
/
defaulted41.C
blob
4272012d5d53213c3e477c6e536f7c86a811c4a3
1
// PR c++/56343
2
// { dg-do compile { target c++11 } }
3
4
class B
5
{
6
public:
7
virtual ~B() noexcept(false) { }
8
};
9
10
class D : public B
11
{
12
public:
13
virtual ~D() = default;
14
};