view run/f/foreach_35_B.d @ 954:05e38ca7e533

<ericanderton@yahoo.com> 2006-04-08 news:bug-95-3@http.d.puremagic.com/bugzilla/
author thomask
date Sun, 09 Apr 2006 06:50:39 +0000
parents
children 81222734adf3
line wrap: on
line source

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

// @author@	<ericanderton@yahoo.com>
// @date@	2006-04-08
// @uri@	news:bug-95-3@http.d.puremagic.com/bugzilla/

module dstress.run.f.foreach_35_B;

int main(){
	int[int] array;
	foreach(int elem; array){
		assert(0);
	}

	return 0;
}