changeset 660:2474750465ff

updated result pages
author thomask
date Thu, 08 Sep 2005 09:41:16 +0000
parents dd49326e9fb2
children 1885fd593bb0
files addon/package_01_A.d nocompile/package_02.d run/f/forward_reference_13_A.d run/f/forward_reference_13_B.d run/f/forward_reference_15_A.d run/f/forward_reference_15_B.d run/o/opDiv_10_A.d run/o/opDiv_10_B.d run/o/opDiv_11_A.d run/o/opDiv_11_B.d
diffstat 10 files changed, 96 insertions(+), 97 deletions(-) [+]
line wrap: on
line diff
--- a/addon/package_01_A.d	Thu Sep 08 07:37:28 2005 +0000
+++ b/addon/package_01_A.d	Thu Sep 08 09:41:16 2005 +0000
@@ -6,8 +6,7 @@
 // @date@	2005-04-20
 // @uri@	news:d45a07$2qit$1@digitaldaemon.com
 
-module dstress.addon.package_01_A;
-
+module addon.package_01_A;
 
 class MyClass{
 	package static int dummy;
--- a/nocompile/package_02.d	Thu Sep 08 07:37:28 2005 +0000
+++ b/nocompile/package_02.d	Thu Sep 08 09:41:16 2005 +0000
@@ -11,7 +11,7 @@
 
 module dstress.nocompile.package_02;
 
-import dstress.addon.package_01_A;
+import addon.package_01_A;
 
 void test(){
 	MyClass c=new MyClass;
--- a/run/f/forward_reference_13_A.d	Thu Sep 08 07:37:28 2005 +0000
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,22 +0,0 @@
-// $HeadURL$
-// $Date$
-// $Author$
-
-// @author@	Deewiant <deewiant.doesnotlike.spam@gmail.com>
-// @date@	2005-07-14
-// @uri@	news:db62cr$308b$1@digitaldaemon.com
-
-module dstress.run.f.forward_reference_13_A;
-
-class Foo(TYPE){
-	static int function(TYPE a) myLilFunction;
-		
-	void func(int function(TYPE a) theParameter = myLilFunction){
-	}
-}
-
-int main(){
-	Foo!(int) foo = new Foo!(int);
-	foo.func();
-	return 0;
-}
\ No newline at end of file
--- a/run/f/forward_reference_13_B.d	Thu Sep 08 07:37:28 2005 +0000
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,22 +0,0 @@
-// $HeadURL$
-// $Date$
-// $Author$
-
-// @author@	Deewiant <deewiant.doesnotlike.spam@gmail.com>
-// @date@	2005-07-14
-// @uri@	news:db62cr$308b$1@digitaldaemon.com
-
-module dstress.run.f.forward_reference_13_B;
-
-class Foo(TYPE){
-	void func(int function(TYPE a) theParameter = myLilFunction){
-	}
-
-	static int function(TYPE a) myLilFunction;
-}
-
-int main(){
-	Foo!(int) foo = new Foo!(int);
-	foo.func();
-	return 0;
-}
\ No newline at end of file
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/run/f/forward_reference_15_A.d	Thu Sep 08 09:41:16 2005 +0000
@@ -0,0 +1,22 @@
+// $HeadURL$
+// $Date$
+// $Author$
+
+// @author@	Deewiant <deewiant.doesnotlike.spam@gmail.com>
+// @date@	2005-07-14
+// @uri@	news:db62cr$308b$1@digitaldaemon.com
+
+module dstress.run.f.forward_reference_15_A;
+
+class Foo(TYPE){
+	static int function(TYPE a) myLilFunction;
+		
+	void func(int function(TYPE a) theParameter = myLilFunction){
+	}
+}
+
+int main(){
+	Foo!(int) foo = new Foo!(int);
+	foo.func();
+	return 0;
+}
\ No newline at end of file
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/run/f/forward_reference_15_B.d	Thu Sep 08 09:41:16 2005 +0000
@@ -0,0 +1,22 @@
+// $HeadURL$
+// $Date$
+// $Author$
+
+// @author@	Deewiant <deewiant.doesnotlike.spam@gmail.com>
+// @date@	2005-07-14
+// @uri@	news:db62cr$308b$1@digitaldaemon.com
+
+module dstress.run.f.forward_reference_15_B;
+
+class Foo(TYPE){
+	void func(int function(TYPE a) theParameter = myLilFunction){
+	}
+
+	static int function(TYPE a) myLilFunction;
+}
+
+int main(){
+	Foo!(int) foo = new Foo!(int);
+	foo.func();
+	return 0;
+}
\ No newline at end of file
--- a/run/o/opDiv_10_A.d	Thu Sep 08 07:37:28 2005 +0000
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,29 +0,0 @@
-// $HeadURL$
-// $Date$
-// $Author$
-
-// @author@	Hiroshi Sakurai <Hiroshi_member@pathlink.com>
-// @date@	2005-08-24
-// @uri@	news:dehc8m$1nk5$1@digitaldaemon.com
-// @uri@	http://f17.aaa.livedoor.jp/~labamba/?BugTrack%2F19
-
-module dstress.run.o.opDiv_10_A;
-
-void test_A(int i){
-	assert(i==1);
-}
-
-void test_B(int i){
-	assert(i==-1);
-}
-
-int main(){
-	test_A(3/3);
-	test_B(-3/3);
-	test_B(3/-3);
-	test_A(-3/-3);
-	test_B((-3)/3);
-	test_A((-3)/(-3));
-	test_B(3/(-3));
-	return 0;	
-} 
\ No newline at end of file
--- a/run/o/opDiv_10_B.d	Thu Sep 08 07:37:28 2005 +0000
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,21 +0,0 @@
-// $HeadURL$
-// $Date$
-// $Author$
-
-// @author@	Hiroshi Sakurai <Hiroshi_member@pathlink.com>
-// @date@	2005-08-24
-// @uri@	news:dehc8m$1nk5$1@digitaldaemon.com
-// @uri@	http://f17.aaa.livedoor.jp/~labamba/?BugTrack%2F19
-
-module dstress.run.o.opDiv_10_B;
-
-int main(){
-	assert(1 == 3/3);
-	assert(-1 == -3/3);
-	assert(-1 == 3/-3);
-	assert(1 == -3/-3);
-	assert(-1 == (-3)/3);
-	assert(1 == (-3)/(-3));
-	assert(-1 == 3/(-3));
-	return 0;	
-} 
\ No newline at end of file
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/run/o/opDiv_11_A.d	Thu Sep 08 09:41:16 2005 +0000
@@ -0,0 +1,29 @@
+// $HeadURL$
+// $Date$
+// $Author$
+
+// @author@	Hiroshi Sakurai <Hiroshi_member@pathlink.com>
+// @date@	2005-08-24
+// @uri@	news:dehc8m$1nk5$1@digitaldaemon.com
+// @uri@	http://f17.aaa.livedoor.jp/~labamba/?BugTrack%2F19
+
+module dstress.run.o.opDiv_11_A;
+
+void test_A(int i){
+	assert(i==1);
+}
+
+void test_B(int i){
+	assert(i==-1);
+}
+
+int main(){
+	test_A(3/3);
+	test_B(-3/3);
+	test_B(3/-3);
+	test_A(-3/-3);
+	test_B((-3)/3);
+	test_A((-3)/(-3));
+	test_B(3/(-3));
+	return 0;	
+} 
\ No newline at end of file
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/run/o/opDiv_11_B.d	Thu Sep 08 09:41:16 2005 +0000
@@ -0,0 +1,21 @@
+// $HeadURL$
+// $Date$
+// $Author$
+
+// @author@	Hiroshi Sakurai <Hiroshi_member@pathlink.com>
+// @date@	2005-08-24
+// @uri@	news:dehc8m$1nk5$1@digitaldaemon.com
+// @uri@	http://f17.aaa.livedoor.jp/~labamba/?BugTrack%2F19
+
+module dstress.run.o.opDiv_11_B;
+
+int main(){
+	assert(1 == 3/3);
+	assert(-1 == -3/3);
+	assert(-1 == 3/-3);
+	assert(1 == -3/-3);
+	assert(-1 == (-3)/3);
+	assert(1 == (-3)/(-3));
+	assert(-1 == 3/(-3));
+	return 0;	
+} 
\ No newline at end of file