view run/foreach_28.d @ 1586:a74f0139fc3d

Fix tests using typeof on types.
author Christian Kamm <kamm incasoftware de>
date Thu, 21 Aug 2008 15:42:21 +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;
}