Sign in
gnu
/
gcc
/
57ea00136418991e847e46a6946a81a1df70c9a4
/
.
/
gcc
/
testsuite
/
g++.old-deja
/
g++.warn
/
virt1.C
blob: 4550dd5e0547901eb25cf66ca54970dfd0c23201 [
file
] [
log
] [
blame
]
// { dg-do assemble }
// { dg-options "-Woverloaded-virtual" }
struct
A
{
virtual
void
f
();
// { dg-warning "" } hidden
};
struct
B
:
public
A
{
void
f
(
int
);
// { dg-warning "" } by this
};