blob: 7c2a798ed47389df28e6e9e6df9e9416981ab81f [file] [log] [blame]
// 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.
// Build don't link:
struct A {};
struct R : virtual A { virtual ~R(); };
R g();
void encode()
{
g();
}