blob: c02f6779a39a264e33262ee2dc2bbafebd860179 [file] [log] [blame]
// Build don't link:
struct A {
struct B {
B (int);
};
static int foop (B);
int splat () {
return foop (B (1));
}
};