view nocompile/foreach_20.d @ 1531:640c34dfc7a5

updated to DMD-1.013
author thomask
date Fri, 27 Apr 2007 17:35:09 +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;
}