Sign in
gnu
/
gcc
/
ab810952eb7c061e37054ddd1dfe0aa033365131
/
.
/
gcc
/
testsuite
/
g++.dg
/
other
/
abstract7.C
blob: 95781602c955cecff1d08ac8f33b015b815140af [
file
] [
log
] [
blame
]
// PR c++/88830
struct
a
{
~
a
();
};
class
b
{
virtual
void
c
(
int
&);
};
class
C
:
b
{
void
c
(
int
&);
virtual
int
d
()
=
0
;
a e
;
};
void
C
::
c
(
int
&)
{}