Sign in
gnu
/
gcc
/
d769c5040874bf9546f2524f3f1d2a894165f92a
/
.
/
gcc
/
testsuite
/
g++.dg
/
lto
/
20090313_1.C
blob: 088792b2dd323f0dc327e9da25da55dadc50f182 [
file
] [
log
] [
blame
]
struct
Foo
{
virtual
void
X
();
virtual
void
Y
();
};
struct
Bar
:
public
Foo
{
Bar
(
Foo
*);
void
Y
();
};
void
Baz
()
{
Foo
f
;
Bar
b
(&
f
);
}