view nocompile/foreach_20.d @ 1536:89775df1607d

vtable can't be used as a template parameter
author thomask
date Mon, 07 May 2007 05:20:25 +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;
}