blob: 4bf91cc781b49c8526657b216dcf00bfe1de53ec [file] [log] [blame]
// { dg-do assemble }
struct A {
struct B {
B (int);
};
static int foop (B);
int splat () {
return foop (B (1));
}
};