Relay-Version: version B 2.10 5/3/83; site utzoo.UUCP Path: utzoo!linus!philabs!cmcl2!seismo!caip!princeton!allegra!alice!ark From: ark@alice.UucP (Andrew Koenig) Newsgroups: net.lang.c Subject: Re: Possible C Compiler Bug? Message-ID: <5608@alice.uUCp> Date: Mon, 9-Jun-86 11:31:11 EDT Article-I.D.: alice.5608 Posted: Mon Jun 9 11:31:11 1986 Date-Received: Wed, 11-Jun-86 00:44:48 EDT References: <3400004@wvlpdp> Organization: Bell Labs, Murray Hill Lines: 26 > This compiles: > main() > { > A lot of code here; > goto here; > > More code here; > > here: > ; > } > > This will not: > main() > { > A lot of code here; > goto here; > > More code here; > > here: > } > Is this a compiler bug? No it isn't. A label must come before a statement. } isn't a statement.