diff nocompile/foreach_22.d @ 183:1c473946386f

extended foreach tests
author thomask
date Thu, 09 Dec 2004 06:08:48 +0000
parents
children e38919011244
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/nocompile/foreach_22.d	Thu Dec 09 06:08:48 2004 +0000
@@ -0,0 +1,12 @@
+// $HeadURL$
+// $Date$
+// $Author$
+
+module dstress.nocompile.foreach_22;
+
+int main(){
+	int[] array;
+	foreach(int c, int c; array){
+	}
+	return 0;
+}