diff nocompile/associative_array_03.d @ 180:da000f026b76

1) added InExpression tests 2) added passed/failed explanations to the summary page
author thomask
date Tue, 07 Dec 2004 12:04:08 +0000
parents
children 1f6cf5ccfbc9
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/nocompile/associative_array_03.d	Tue Dec 07 12:04:08 2004 +0000
@@ -0,0 +1,14 @@
+// $HeadURL$
+// $Date$
+// $Author$
+
+module dstress.nocompile.associative_array_03;
+
+int main(){
+	int[size_t] asso;
+	int[] array;
+
+	array = asso;
+
+	return 0;
+}