Sign in
gnu
/
gcc
/
ab810952eb7c061e37054ddd1dfe0aa033365131
/
.
/
gcc
/
testsuite
/
g++.dg
/
torture
/
pr81812.C
blob: d235e237588843f1007fd3845287a3e7c426671c [
file
] [
log
] [
blame
]
struct
Error
{
virtual
void
error
(...
)
const
;
};
struct
ChildNode
:
virtual
Error
{
void
error
(...
)
const
;
};
void
ext
(
const
char
*,
...);
void
ChildNode
::
error
(...)
const
{
#ifdef
FIX
ext
(
""
);
#endif
}