blob: 4b18b08880aa926550eb21d16d8ca6e5c1a9d707 [file] [log] [blame]
struct xx { int x; int y; };
struct xx f () {
struct xx x = { 3, 4 };
return x;
}
int main () {
struct xx l = f ();
}