[comp.lang.c] NONE

rsc@erc3ba.UUCP (04/09/87)

Given the following:

struct {
	int a,b;
} foo()
{
	struct {
		int a,b;
	} c;

	return c;
}

our System V compiler complains:
"foo.c", line 9: assignment of different structures

Isn't this valid?  Any comments?