changeset 894:bc535ba67c39

Tom S <h3r3tic@remove.mat.uni.torun.pl> 2006-03-03 news:dua8sq$18af$1@digitaldaemon.com
author thomask
date Tue, 07 Mar 2006 10:22:15 +0000
parents e5f5316b1440
children 12e8457fbb03
files compile/i/import_13_A.d compile/i/import_13_B.d compile/i/import_13_G.d compile/i/import_13_H.d compile/i/import_13_M.d compile/i/import_13_N.d run/i/import_13_C.d run/i/import_13_D.d run/i/import_13_E.d run/i/import_13_F.d run/i/import_13_I.d run/i/import_13_J.d run/i/import_13_K.d run/i/import_13_L.d run/i/import_13_O.d run/i/import_13_P.d run/i/import_13_Q.d run/i/import_13_R.d
diffstat 18 files changed, 340 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/compile/i/import_13_A.d	Tue Mar 07 10:22:15 2006 +0000
@@ -0,0 +1,17 @@
+// $HeadURL$
+// $Date$
+// $Author$
+
+// @author@	Tom S <h3r3tic@remove.mat.uni.torun.pl>
+// @date@	2006-03-03
+// @uri@	news:dua8sq$18af$1@digitaldaemon.com
+
+module /*dstress.*/compile.i.import_13_A;
+
+import /*dstress.*/compile.i.import_13_B;
+
+class Foo : Bar{
+	char[] foo(){
+		return "Foo.foo";
+	}
+}
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/compile/i/import_13_B.d	Tue Mar 07 10:22:15 2006 +0000
@@ -0,0 +1,17 @@
+// $HeadURL$
+// $Date$
+// $Author$
+
+// @author@	Tom S <h3r3tic@remove.mat.uni.torun.pl>
+// @date@	2006-03-03
+// @uri@	news:dua8sq$18af$1@digitaldaemon.com
+
+module /*dstress.*/compile.i.import_13_B;
+
+class Bar{
+	private import /*dstress.*/compile.i.import_13_A;
+
+	char[] bar(){
+		return "Bar.bar";
+	}
+}
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/compile/i/import_13_G.d	Tue Mar 07 10:22:15 2006 +0000
@@ -0,0 +1,17 @@
+// $HeadURL$
+// $Date$
+// $Author$
+
+// @author@	Tom S <h3r3tic@remove.mat.uni.torun.pl>
+// @date@	2006-03-03
+// @uri@	news:dua8sq$18af$1@digitaldaemon.com
+
+module /*dstress.*/compile.i.import_13_G;
+
+import /*dstress.*/compile.i.import_13_H;
+
+class Foo : Bar{
+	char[] foo(){
+		return "Foo.foo";
+	}
+}
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/compile/i/import_13_H.d	Tue Mar 07 10:22:15 2006 +0000
@@ -0,0 +1,15 @@
+// $HeadURL$
+// $Date$
+// $Author$
+
+// @author@	Tom S <h3r3tic@remove.mat.uni.torun.pl>
+// @date@	2006-03-03
+// @uri@	news:dua8sq$18af$1@digitaldaemon.com
+
+module /*dstress.*/compile.i.import_13_H;
+
+class Bar{
+	char[] bar(){
+		return "Bar.bar";
+	}
+}
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/compile/i/import_13_M.d	Tue Mar 07 10:22:15 2006 +0000
@@ -0,0 +1,17 @@
+// $HeadURL$
+// $Date$
+// $Author$
+
+// @author@	Tom S <h3r3tic@remove.mat.uni.torun.pl>
+// @date@	2006-03-03
+// @uri@	news:dua8sq$18af$1@digitaldaemon.com
+
+module /*dstress.*/compile.i.import_13_M;
+
+import /*dstress.*/compile.i.import_13_N;
+
+class Foo : Bar{
+	char[] foo(){
+		return "Foo.foo";
+	}
+}
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/compile/i/import_13_N.d	Tue Mar 07 10:22:15 2006 +0000
@@ -0,0 +1,17 @@
+// $HeadURL$
+// $Date$
+// $Author$
+
+// @author@	Tom S <h3r3tic@remove.mat.uni.torun.pl>
+// @date@	2006-03-03
+// @uri@	news:dua8sq$18af$1@digitaldaemon.com
+
+module /*dstress.*/compile.i.import_13_N;
+
+import /*dstress.*/compile.i.import_13_M;
+
+class Bar{
+	char[] bar(){
+		return "Bar.bar";
+	}
+}
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/run/i/import_13_C.d	Tue Mar 07 10:22:15 2006 +0000
@@ -0,0 +1,20 @@
+// $HeadURL$
+// $Date$
+// $Author$
+
+// @author@	Tom S <h3r3tic@remove.mat.uni.torun.pl>
+// @date@	2006-03-03
+// @uri@	news:dua8sq$18af$1@digitaldaemon.com
+
+// __DSTRESS_DFLAGS__ compile/i/import_13_A.d  compile/i/import_13_B.d
+
+module dstress.run.i.import_13_C;
+
+import /*dstress.*/compile.i.import_13_A;
+
+int main(){
+	if((new Foo()).bar() !=  "Bar.bar"){
+		assert(0);
+	}
+	return 0;
+}
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/run/i/import_13_D.d	Tue Mar 07 10:22:15 2006 +0000
@@ -0,0 +1,20 @@
+// $HeadURL$
+// $Date$
+// $Author$
+
+// @author@	Tom S <h3r3tic@remove.mat.uni.torun.pl>
+// @date@	2006-03-03
+// @uri@	news:dua8sq$18af$1@digitaldaemon.com
+
+// __DSTRESS_DFLAGS__ compile/i/import_13_B.d  compile/i/import_13_A.d
+
+module dstress.run.i.import_13_D;
+
+import /*dstress.*/compile.i.import_13_A;
+
+int main(){
+	if((new Foo()).bar() !=  "Bar.bar"){
+		assert(0);
+	}
+	return 0;
+}
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/run/i/import_13_E.d	Tue Mar 07 10:22:15 2006 +0000
@@ -0,0 +1,20 @@
+// $HeadURL$
+// $Date$
+// $Author$
+
+// @author@	Tom S <h3r3tic@remove.mat.uni.torun.pl>
+// @date@	2006-03-03
+// @uri@	news:dua8sq$18af$1@digitaldaemon.com
+
+// __DSTRESS_DFLAGS__ compile/i/import_13_B.d  compile/i/import_13_A.d
+
+module dstress.run.i.import_13_E;
+
+import /*dstress.*/compile.i.import_13_A;
+
+int main(){
+	if((new Foo()).foo() !=  "Foo.foo"){
+		assert(0);
+	}
+	return 0;
+}
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/run/i/import_13_F.d	Tue Mar 07 10:22:15 2006 +0000
@@ -0,0 +1,20 @@
+// $HeadURL$
+// $Date$
+// $Author$
+
+// @author@	Tom S <h3r3tic@remove.mat.uni.torun.pl>
+// @date@	2006-03-03
+// @uri@	news:dua8sq$18af$1@digitaldaemon.com
+
+// __DSTRESS_DFLAGS__ compile/i/import_13_A.d  compile/i/import_13_B.d
+
+module dstress.run.i.import_13_F;
+
+import /*dstress.*/compile.i.import_13_A;
+
+int main(){
+	if((new Foo()).foo() !=  "Foo.foo"){
+		assert(0);
+	}
+	return 0;
+}
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/run/i/import_13_I.d	Tue Mar 07 10:22:15 2006 +0000
@@ -0,0 +1,20 @@
+// $HeadURL$
+// $Date$
+// $Author$
+
+// @author@	Tom S <h3r3tic@remove.mat.uni.torun.pl>
+// @date@	2006-03-03
+// @uri@	news:dua8sq$18af$1@digitaldaemon.com
+
+// __DSTRESS_DFLAGS__ compile/i/import_13_G.d  compile/i/import_13_H.d
+
+module dstress.run.i.import_13_I;
+
+import /*dstress.*/compile.i.import_13_G;
+
+int main(){
+	if((new Foo()).foo() !=  "Foo.foo"){
+		assert(0);
+	}
+	return 0;
+}
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/run/i/import_13_J.d	Tue Mar 07 10:22:15 2006 +0000
@@ -0,0 +1,20 @@
+// $HeadURL$
+// $Date$
+// $Author$
+
+// @author@	Tom S <h3r3tic@remove.mat.uni.torun.pl>
+// @date@	2006-03-03
+// @uri@	news:dua8sq$18af$1@digitaldaemon.com
+
+// __DSTRESS_DFLAGS__ compile/i/import_13_H.d  compile/i/import_13_G.d
+
+module dstress.run.i.import_13_J;
+
+import /*dstress.*/compile.i.import_13_G;
+
+int main(){
+	if((new Foo()).foo() !=  "Foo.foo"){
+		assert(0);
+	}
+	return 0;
+}
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/run/i/import_13_K.d	Tue Mar 07 10:22:15 2006 +0000
@@ -0,0 +1,20 @@
+// $HeadURL$
+// $Date$
+// $Author$
+
+// @author@	Tom S <h3r3tic@remove.mat.uni.torun.pl>
+// @date@	2006-03-03
+// @uri@	news:dua8sq$18af$1@digitaldaemon.com
+
+// __DSTRESS_DFLAGS__ compile/i/import_13_H.d  compile/i/import_13_G.d
+
+module dstress.run.i.import_13_K;
+
+import /*dstress.*/compile.i.import_13_G;
+
+int main(){
+	if((new Foo()).bar() !=  "Bar.bar"){
+		assert(0);
+	}
+	return 0;
+}
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/run/i/import_13_L.d	Tue Mar 07 10:22:15 2006 +0000
@@ -0,0 +1,20 @@
+// $HeadURL$
+// $Date$
+// $Author$
+
+// @author@	Tom S <h3r3tic@remove.mat.uni.torun.pl>
+// @date@	2006-03-03
+// @uri@	news:dua8sq$18af$1@digitaldaemon.com
+
+// __DSTRESS_DFLAGS__ compile/i/import_13_G.d  compile/i/import_13_H.d
+
+module dstress.run.i.import_13_L;
+
+import /*dstress.*/compile.i.import_13_G;
+
+int main(){
+	if((new Foo()).bar() !=  "Bar.bar"){
+		assert(0);
+	}
+	return 0;
+}
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/run/i/import_13_O.d	Tue Mar 07 10:22:15 2006 +0000
@@ -0,0 +1,20 @@
+// $HeadURL$
+// $Date$
+// $Author$
+
+// @author@	Tom S <h3r3tic@remove.mat.uni.torun.pl>
+// @date@	2006-03-03
+// @uri@	news:dua8sq$18af$1@digitaldaemon.com
+
+// __DSTRESS_DFLAGS__ compile/i/import_13_M.d  compile/i/import_13_N.d
+
+module dstress.run.i.import_13_O;
+
+import /*dstress.*/compile.i.import_13_M;
+
+int main(){
+	if((new Foo()).bar() !=  "Bar.bar"){
+		assert(0);
+	}
+	return 0;
+}
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/run/i/import_13_P.d	Tue Mar 07 10:22:15 2006 +0000
@@ -0,0 +1,20 @@
+// $HeadURL$
+// $Date$
+// $Author$
+
+// @author@	Tom S <h3r3tic@remove.mat.uni.torun.pl>
+// @date@	2006-03-03
+// @uri@	news:dua8sq$18af$1@digitaldaemon.com
+
+// __DSTRESS_DFLAGS__ compile/i/import_13_N.d  compile/i/import_13_M.d
+
+module dstress.run.i.import_13_P;
+
+import /*dstress.*/compile.i.import_13_M;
+
+int main(){
+	if((new Foo()).bar() !=  "Bar.bar"){
+		assert(0);
+	}
+	return 0;
+}
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/run/i/import_13_Q.d	Tue Mar 07 10:22:15 2006 +0000
@@ -0,0 +1,20 @@
+// $HeadURL$
+// $Date$
+// $Author$
+
+// @author@	Tom S <h3r3tic@remove.mat.uni.torun.pl>
+// @date@	2006-03-03
+// @uri@	news:dua8sq$18af$1@digitaldaemon.com
+
+// __DSTRESS_DFLAGS__ compile/i/import_13_N.d  compile/i/import_13_M.d
+
+module dstress.run.i.import_13_Q;
+
+import /*dstress.*/compile.i.import_13_M;
+
+int main(){
+	if((new Foo()).foo() !=  "Foo.foo"){
+		assert(0);
+	}
+	return 0;
+}
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/run/i/import_13_R.d	Tue Mar 07 10:22:15 2006 +0000
@@ -0,0 +1,20 @@
+// $HeadURL$
+// $Date$
+// $Author$
+
+// @author@	Tom S <h3r3tic@remove.mat.uni.torun.pl>
+// @date@	2006-03-03
+// @uri@	news:dua8sq$18af$1@digitaldaemon.com
+
+// __DSTRESS_DFLAGS__ compile/i/import_13_M.d  compile/i/import_13_N.d
+
+module dstress.run.i.import_13_R;
+
+import /*dstress.*/compile.i.import_13_M;
+
+int main(){
+	if((new Foo()).foo() !=  "Foo.foo"){
+		assert(0);
+	}
+	return 0;
+}