aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/g++.dg/torture/pr55260-2.C
blob: 43ed1e775a6ee9428c99266c7ea6c7e8a4c534f9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
/* { 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);
}