Sign in
gnu
/
gcc
/
ab810952eb7c061e37054ddd1dfe0aa033365131
/
.
/
gcc
/
testsuite
/
g++.dg
/
torture
/
pr55260-2.C
blob: 43ed1e775a6ee9428c99266c7ea6c7e8a4c534f9 [
file
] [
log
] [
blame
]
/* { dg-do compile } */
/* { dg-add-options bind_pic_locally } */
struct
B
{
virtual
void
test_suite_finish
();
};
void
fn1
(
B
&
p2
)
{
fn1
(
p2
);
B
&
a
=
p2
;
a
.
test_suite_finish
();
B b
;
fn1
(
b
);
}