From mboxrd@z Thu Jan 1 00:00:00 1970 Message-ID: <45578282b32b388fd2b85b062cbeefac@quanstro.net> From: erik quanstrom Date: Fri, 6 Oct 2006 04:51:20 -0500 To: 9fans@cse.psu.edu Subject: Re: [9fans] C99 and you In-Reply-To: <7fca3123c4179206ee5199a80f182378@terzarima.net> MIME-Version: 1.0 Content-Type: text/plain; charset="US-ASCII" Content-Transfer-Encoding: 7bit Topicbox-Message-UUID: c6dc0dd4-ead1-11e9-9d60-3106f5b1d025 actually, the switch statement here is a red herring. here's what kenc dislikes: label: int assignment = 0; so this will generate an error, too: void main(void) { begin: int j; j = 0; if(j>1) goto begin; exits(""); } gcc is also unable to parse this production. - erik