view nocompile/f/foreach_37_A.d @ 1320:daef239f37cf

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

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

// @author@	Deewiant <deewiant@gmail.com>	
// @date@	2006-09-20
// @uri@	http://d.puremagic.com/issues/show_bug.cgi?id=297
// @desc@	[Issue 297] New: Shadowing declarations allowed in foreach type lists

// __DSTRESS_ELINE__ 18

module dstress.nocompile.f.foreach_37_A;

void foo(){
	int[] x = new int[3];
	int e;

	foreach(e; x){
	}
}