changeset 507:efd4ec3d1235

moved big static array test to nocompile
author thomask
date Tue, 10 May 2005 23:45:02 +0000
parents 9a1ad98b24da
children 3b8381b35206
files nocompile/array_initialization_08.d run/array_initialization_08.d
diffstat 2 files changed, 15 insertions(+), 16 deletions(-) [+]
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/nocompile/array_initialization_08.d	Tue May 10 23:45:02 2005 +0000
@@ -0,0 +1,15 @@
+// $HeadURL$
+// $Date$
+// $Author$
+
+// @author@	zwang <nehzgnaw@gmail.com>
+// @date@	2005-04-17
+// @uri@	news:d3sq2j$1086$1@digitaldaemon.com
+
+module dstress.nocompile.array_initialization_08;
+
+int main(){
+	static char a[int.max/32];
+	return 0;
+}
+
--- a/run/array_initialization_08.d	Tue May 10 23:43:19 2005 +0000
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,16 +0,0 @@
-// $HeadURL$
-// $Date$
-// $Author$
-
-// @author@	zwang <nehzgnaw@gmail.com>
-// @date@	2005-04-17
-// @uri@	news:d3sq2j$1086$1@digitaldaemon.com
-
-
-module dstress.run.array_initialization_08;
-
-int main(){
-	static char a[int.max/32];
-	return 0;
-}
-