view run/f/foreach_35_B.d @ 1319:81222734adf3

sed'ed replacement of new:...http.d.puremagic.co... with http://d.puremagic.com/issues/show_bug.cgi?...
author thomask
date Sun, 31 Dec 2006 19:58:06 +0000
parents 05e38ca7e533
children
line wrap: on
line source

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

// @author@	<ericanderton@yahoo.com>
// @date@	2006-04-08
// @uri@	http://d.puremagic.com/issues/show_bug.cgi?id=95

module dstress.run.f.foreach_35_B;

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

	return 0;
}