blob: f35d39c35ed2d3829e12aa6769f639ed547cce61 [file] [log] [blame]
/* On S/390 this ends up calling the vec_init RTL expander with a
parallel of two symbol_refs. */
/* { dg-do compile } */
/* { dg-options "-O3 -fPIC" } */
struct test
{
struct base
{
int key;
};
struct derived : public base
{
int key;
};
derived core;
derived &dRef;
base &bRef;
test() : dRef (core), bRef (core) {}
};
test test;