view run/b/bug_d_codegen_1228_D.d @ 777:2f10fa84a21b

bulk offline commit
author thomask
date Fri, 16 Dec 2005 18:23:51 +0000
parents
children
line wrap: on
line source

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

// @author@	Thomas Kuehne <thomas-dloop@kuehne.cn>
// @uri@	news:23p273-9bq.ln1@birke.kuehne.cn

module dstress.run.b.bug_d_codegen_1228_D;

int find(){
	foreach(char c; "blah"c){
		return 0;
	}
}

int main(){
	if(find() == 0){
		return 0;
	}
}