view run/foreach_28.d @ 1594:c970971fb408

Remove nocompile/a/arrayOp_01: since array ops are now supported, it is no longer valid and needs to be replaced by a set of array op tests.
author Christian Kamm <kamm incasoftware de>
date Thu, 28 Aug 2008 17:33:00 +0200
parents 4d5d9a6439e2
children
line wrap: on
line source

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

// @author@	Stewart Gordon <smjg_1998@yahoo.com>
// @date@	2005-04-18
// @uri@	news:d4026v$nc0$5@digitaldaemon.com
// @uri@	http://d.puremagic.com/issues/show_bug.cgi?id=990

module dstress.run.foreach_28;

int main(char[][] args) {
	foreach(char[] p; args){
		version(dummy) int i;
	}
	return 0;
}