view nocompile/foreach_20.d @ 1516:4576b42ef546

updated to DMD-1.013
author thomask
date Fri, 27 Apr 2007 17:21:10 +0000
parents e38919011244
children 36bedfa079e6
line wrap: on
line source

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

// index has to be int / uint 

// __DSTRESS_ELINE__ 13

module dstress.nocompile.foreach_20;

int main(){
	char[] string;
	foreach(dchar index, char c; string){
	}
	return 0;
}