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
* auto-profile.c (afdo_annotate_cfg): Use update_max_bb_count.
[official-gcc.git]
/
gcc
/
testsuite
/
g++.old-deja
/
g++.brendan
/
misc4.C
blob
d9df9561d2c1908f200c2a5d5f975444dc3e4b5d
1
// { dg-do assemble }
2
// GROUPS passed miscellaneous
3
// This should not emit an error about A::~A() being redefined; we
4
// should check that it is a pure virtual.
5
class A {
6
public:
7
virtual ~A() = 0;
8
};
9
10
A::~A() {}