view run/return_06.d @ 1599:d37b19f7e8bb

Move run/c/case_01 to nocompile.
author Christian Kamm <kamm incasoftware de>
date Tue, 09 Sep 2008 17:28:31 +0200
parents 902d2c168029
children
line wrap: on
line source

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

// @author@	Thomas Kühne <thomas-dloop@kuehne.cn>
// @uri@	http://d.puremagic.com/issues/show_bug.cgi?id=727
// @desc@	[Issue 727] -inline: missing return in short function causes incorrect code generation

// __DSTRESS_TORTURE_BLOCK__ -release

module dstress.run.return_06;

int test(int i){
	if(i==0){
		return 2;
	}
}

int main(){
	if(2 != test(0)){
		assert(0);
	}

	try{
		test(1);
	}catch{
		return 0;
	}
	assert(0);
}