repo.or.cz
/
gcc.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Fortran: Fix PR 47485.
[gcc.git]
/
gcc
/
testsuite
/
g++.dg
/
other
/
abstract7.C
blob
95781602c955cecff1d08ac8f33b015b815140af
1
// PR c++/88830
2
3
struct a {
4
~a();
5
};
6
class b {
7
virtual void c(int &);
8
};
9
class C : b {
10
void c(int &);
11
virtual int d() = 0;
12
a e;
13
};
14
void C::c(int &) {}