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