aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/g++.old-deja/g++.jason/byval3.C
blob: f56fc124368e9b2868ee73b1775689593c2ddde5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// { dg-do assemble  }
// Test to make sure that value return of classes with cleanups works; it
// has been broken at various times on PCC_STATIC_STRUCT_RETURN targets.

struct A {};

struct R : virtual A { virtual ~R(); };

R g();

void encode()
{
    g();
}