view run/goto_01.d @ 1597:8b9d4d2f925a

Fix typos in complex tests. See D bug 614.
author Christian Kamm <kamm incasoftware de>
date Tue, 09 Sep 2008 16:53:58 +0200
parents e77e4444c170
children
line wrap: on
line source

// $HeadURL$
// $Date$
// $Author$

// @author@	Stephan Wienczny <Stephan@Wienczny.de>
// @date@	2004-09-20
// @uri@	irc:irc.freenode.net#D

module dstress.run.goto_01;

int main(){
	goto start;
	assert(0);
start:
	return 0;
}