changeset 719:de0ff320fb08

Stewart Gordon <smjg_1998@yahoo.com> 2005-10-26 news:djnie3$1a5t$2@digitaldaemon.com
author thomask
date Fri, 28 Oct 2005 21:27:43 +0000
parents f7eb9ff67f0b
children 038d8bcdcf93
files run/i/import_10_A.d run/i/import_10_B.d
diffstat 2 files changed, 34 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/run/i/import_10_A.d	Fri Oct 28 21:27:43 2005 +0000
@@ -0,0 +1,20 @@
+// $HeadURL$
+// $Date$
+// $Author$
+
+// @author@	Stewart Gordon <smjg_1998@yahoo.com>
+// @date@	2005-10-26
+// @uri@	news:djnie3$1a5t$2@digitaldaemon.com
+
+// __DSTRESS_DFLAGS__ run/i/import_10_B.d
+
+module /*dstress.*/run.i.import_10_A;
+import /*dstress.*/run.i.import_10_B;
+
+const uint len = 42;
+
+int main(){
+	assert(array.length == 42);
+	return 0;
+}
+
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/run/i/import_10_B.d	Fri Oct 28 21:27:43 2005 +0000
@@ -0,0 +1,14 @@
+// $HeadURL$
+// $Date$
+// $Author$
+
+// @author@	Stewart Gordon <smjg_1998@yahoo.com>
+// @date@	2005-10-26
+// @uri@	news:djnie3$1a5t$2@digitaldaemon.com
+
+// __DSTRESS_DFLAGS__ run/i/import_10_A.d
+
+module /*dstress.*/run.i.import_10_B;
+import /*dstress.*/run.i.import_10_A;
+
+int[len] array;