Relay-Version: version B 2.10 5/3/83; site utzoo.UUCP Path: utzoo!utgpu!water!watnot!watmath!clyde!cbatt!ihnp4!occrsh!erc3ba!rsc From: rsc@erc3ba.UUCP Newsgroups: comp.lang.c Subject: NONE Message-ID: <309@erc3ba.UUCP> Date: Thu, 9-Apr-87 11:30:49 EST Article-I.D.: erc3ba.309 Posted: Thu Apr 9 11:30:49 1987 Date-Received: Sat, 11-Apr-87 14:19:18 EST Organization: AT&T - Engineering Research Center, Princeton NJ Lines: 18 Keywords: C 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?