view run/return_01.d @ 1548:00ac8cb240eb

Matti Niemenmaa <deewiant@gmail.com> 2006-11-18 http://d.puremagic.com/issues/show_bug.cgi?id=559
author thomask
date Mon, 23 Jul 2007 18:41:15 +0000
parents 40336fe41235
children
line wrap: on
line source

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

module dstress.run.return_01;

int dummyJob;
int dummy(){
	return ++dummyJob;
}

void test(){
	return dummy();
}

int main(){
	test();
	return dummyJob-1;
}