view run/goto_01.d @ 1602:56d43974b468

Fix broken tests fvbommel pointed out in #2.
author Christian Kamm <kamm incasoftware de>
date Fri, 06 Mar 2009 15:48:16 +0100
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;
}