changeset 615:015847a6fe3d

Deewiant <deewiant.doesnotlike.spam@gmail.com> 2005-08-04 news:dct2rf$5bf$1@digitaldaemon.com
author thomask
date Sat, 06 Aug 2005 14:33:40 +0000
parents e375e824c620
children 591e7bdedbdc
files run/b/bug_e2ir_1786_A.d run/b/bug_e2ir_1786_B.d run/b/bug_e2ir_1786_C.d run/b/bug_e2ir_1786_D.d
diffstat 4 files changed, 90 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/run/b/bug_e2ir_1786_A.d	Sat Aug 06 14:33:40 2005 +0000
@@ -0,0 +1,22 @@
+// $HeadURL$
+// $Date$
+// $Author$
+
+// @author@	Deewiant <deewiant.doesnotlike.spam@gmail.com>
+// @date@	2005-08-04
+// @uri@	news:dct2rf$5bf$1@digitaldaemon.com
+
+module dtsress.run.b.bug_e2ir_1786_A;
+
+interface SomeInterface{
+}
+
+int main(){
+	SomeInterface[] arr = new SomeInterface[1];
+
+	if(arr[0] < arr[0]){
+		assert(0);
+	}else{
+		return 0;
+	}
+}
\ No newline at end of file
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/run/b/bug_e2ir_1786_B.d	Sat Aug 06 14:33:40 2005 +0000
@@ -0,0 +1,22 @@
+// $HeadURL$
+// $Date$
+// $Author$
+
+// @author@	Deewiant <deewiant.doesnotlike.spam@gmail.com>
+// @date@	2005-08-04
+// @uri@	news:dct2rf$5bf$1@digitaldaemon.com
+
+module dtsress.run.b.bug_e2ir_1786_B;
+
+interface SomeInterface{
+}
+
+int main(){
+	SomeInterface[] arr = new SomeInterface[1];
+
+	if(arr[0] != arr[0]){
+		assert(0);
+	}else{
+		return 0;
+	}
+}
\ No newline at end of file
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/run/b/bug_e2ir_1786_C.d	Sat Aug 06 14:33:40 2005 +0000
@@ -0,0 +1,22 @@
+// $HeadURL$
+// $Date$
+// $Author$
+
+// @author@	Deewiant <deewiant.doesnotlike.spam@gmail.com>
+// @date@	2005-08-04
+// @uri@	news:dct2rf$5bf$1@digitaldaemon.com
+
+module dtsress.run.b.bug_e2ir_1786_C;
+
+interface SomeInterface{
+}
+
+int main(){
+	SomeInterface[] arr = new SomeInterface[1];
+
+	if(arr[0] == arr[0]){
+		return 0;
+	}else{
+		assert(0);
+	}
+}
\ No newline at end of file
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/run/b/bug_e2ir_1786_D.d	Sat Aug 06 14:33:40 2005 +0000
@@ -0,0 +1,24 @@
+// $HeadURL$
+// $Date$
+// $Author$
+
+// @author@	Deewiant <deewiant.doesnotlike.spam@gmail.com>
+// @date@	2005-08-04
+// @uri@	news:dct2rf$5bf$1@digitaldaemon.com
+
+module dtsress.run.b.bug_e2ir_1786_D;
+
+class SomeObject{
+}
+
+int main(){
+	SomeObject[] arr = new SomeObject[1];
+	
+	arr[0]=new SomeObject();
+
+	if(arr[0] < arr[0]){
+		assert(0);
+	}else{
+		return 0;
+	}
+}
\ No newline at end of file