changeset 654:8f030a889677

<jmjmak@utu.invalid.fi> 2005-08-31 news:df4t72$27kf$1@digitaldaemon.com
author thomask
date Wed, 07 Sep 2005 22:34:23 +0000
parents 41866371baae
children 4f3505395b1b
files nocompile/o/opCmp_06_A.d nocompile/o/opCmp_06_B.d nocompile/o/opCmp_06_C.d nocompile/o/opCmp_06_D.d nocompile/o/opCmp_06_E.d nocompile/o/opCmp_06_F.d nocompile/o/opCmp_06_G.d nocompile/o/opCmp_06_H.d nocompile/o/opCmp_06_I.d nocompile/o/opCmp_06_J.d nocompile/o/opCmp_06_K.d nocompile/o/opCmp_06_L.d nocompile/o/opCmp_06_M.d nocompile/o/opCmp_06_N.d nocompile/o/opCmp_06_O.d
diffstat 15 files changed, 420 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/nocompile/o/opCmp_06_A.d	Wed Sep 07 22:34:23 2005 +0000
@@ -0,0 +1,28 @@
+// $HeadURL$
+// $Date$
+// $Author$
+
+// @author@	<jmjmak@utu.invalid.fi>
+// @date@	2005-08-31
+// @uri@	news:df4t72$27kf$1@digitaldaemon.com
+
+// __DSTRESS_ELINE__ 27
+
+module dstress.nocompile.o.opCmp_06_A;
+
+interface Interface{
+	int test(int);
+}
+
+class Class : Interface{
+	int test(int i){
+		return ++i;
+	}
+}
+
+void main(){
+	Interface a = new Class();
+	Interface b = new Class();
+
+	assert(a != b);
+}
\ No newline at end of file
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/nocompile/o/opCmp_06_B.d	Wed Sep 07 22:34:23 2005 +0000
@@ -0,0 +1,28 @@
+// $HeadURL$
+// $Date$
+// $Author$
+
+// @author@	<jmjmak@utu.invalid.fi>
+// @date@	2005-08-31
+// @uri@	news:df4t72$27kf$1@digitaldaemon.com
+
+// __DSTRESS_ELINE__ 27
+
+module dstress.nocompile.o.opCmp_06_B;
+
+interface Interface{
+	int test(int);
+}
+
+class Class : Interface{
+	int test(int i){
+		return ++i;
+	}
+}
+
+void main(){
+	Interface a = new Class();
+	Interface b = new Class();
+
+	assert(a == b);
+}
\ No newline at end of file
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/nocompile/o/opCmp_06_C.d	Wed Sep 07 22:34:23 2005 +0000
@@ -0,0 +1,28 @@
+// $HeadURL$
+// $Date$
+// $Author$
+
+// @author@	<jmjmak@utu.invalid.fi>
+// @date@	2005-08-31
+// @uri@	news:df4t72$27kf$1@digitaldaemon.com
+
+// __DSTRESS_ELINE__ 27
+
+module dstress.nocompile.o.opCmp_06_C;
+
+interface Interface{
+	int test(int);
+}
+
+class Class : Interface{
+	int test(int i){
+		return ++i;
+	}
+}
+
+void main(){
+	Interface a = new Class();
+	Interface b = new Class();
+
+	assert(a > b);
+}
\ No newline at end of file
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/nocompile/o/opCmp_06_D.d	Wed Sep 07 22:34:23 2005 +0000
@@ -0,0 +1,28 @@
+// $HeadURL$
+// $Date$
+// $Author$
+
+// @author@	<jmjmak@utu.invalid.fi>
+// @date@	2005-08-31
+// @uri@	news:df4t72$27kf$1@digitaldaemon.com
+
+// __DSTRESS_ELINE__ 27
+
+module dstress.nocompile.o.opCmp_06_D;
+
+interface Interface{
+	int test(int);
+}
+
+class Class : Interface{
+	int test(int i){
+		return ++i;
+	}
+}
+
+void main(){
+	Interface a = new Class();
+	Interface b = new Class();
+
+	assert(a >= b);
+}
\ No newline at end of file
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/nocompile/o/opCmp_06_E.d	Wed Sep 07 22:34:23 2005 +0000
@@ -0,0 +1,28 @@
+// $HeadURL$
+// $Date$
+// $Author$
+
+// @author@	<jmjmak@utu.invalid.fi>
+// @date@	2005-08-31
+// @uri@	news:df4t72$27kf$1@digitaldaemon.com
+
+// __DSTRESS_ELINE__ 27
+
+module dstress.nocompile.o.opCmp_06_E;
+
+interface Interface{
+	int test(int);
+}
+
+class Class : Interface{
+	int test(int i){
+		return ++i;
+	}
+}
+
+void main(){
+	Interface a = new Class();
+	Interface b = new Class();
+
+	assert(a < b);
+}
\ No newline at end of file
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/nocompile/o/opCmp_06_F.d	Wed Sep 07 22:34:23 2005 +0000
@@ -0,0 +1,28 @@
+// $HeadURL$
+// $Date$
+// $Author$
+
+// @author@	<jmjmak@utu.invalid.fi>
+// @date@	2005-08-31
+// @uri@	news:df4t72$27kf$1@digitaldaemon.com
+
+// __DSTRESS_ELINE__ 27
+
+module dstress.nocompile.o.opCmp_06_F;
+
+interface Interface{
+	int test(int);
+}
+
+class Class : Interface{
+	int test(int i){
+		return ++i;
+	}
+}
+
+void main(){
+	Interface a = new Class();
+	Interface b = new Class();
+
+	assert(a <= b);
+}
\ No newline at end of file
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/nocompile/o/opCmp_06_G.d	Wed Sep 07 22:34:23 2005 +0000
@@ -0,0 +1,28 @@
+// $HeadURL$
+// $Date$
+// $Author$
+
+// @author@	<jmjmak@utu.invalid.fi>
+// @date@	2005-08-31
+// @uri@	news:df4t72$27kf$1@digitaldaemon.com
+
+// __DSTRESS_ELINE__ 27
+
+module dstress.nocompile.o.opCmp_06_G;
+
+interface Interface{
+	int test(int);
+}
+
+class Class : Interface{
+	int test(int i){
+		return ++i;
+	}
+}
+
+void main(){
+	Interface a = new Class();
+	Interface b = new Class();
+
+	assert(a <>= b);
+}
\ No newline at end of file
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/nocompile/o/opCmp_06_H.d	Wed Sep 07 22:34:23 2005 +0000
@@ -0,0 +1,28 @@
+// $HeadURL$
+// $Date$
+// $Author$
+
+// @author@	<jmjmak@utu.invalid.fi>
+// @date@	2005-08-31
+// @uri@	news:df4t72$27kf$1@digitaldaemon.com
+
+// __DSTRESS_ELINE__ 27
+
+module dstress.nocompile.o.opCmp_06_H;
+
+interface Interface{
+	int test(int);
+}
+
+class Class : Interface{
+	int test(int i){
+		return ++i;
+	}
+}
+
+void main(){
+	Interface a = new Class();
+	Interface b = new Class();
+
+	assert(a !<>= b);
+}
\ No newline at end of file
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/nocompile/o/opCmp_06_I.d	Wed Sep 07 22:34:23 2005 +0000
@@ -0,0 +1,28 @@
+// $HeadURL$
+// $Date$
+// $Author$
+
+// @author@	<jmjmak@utu.invalid.fi>
+// @date@	2005-08-31
+// @uri@	news:df4t72$27kf$1@digitaldaemon.com
+
+// __DSTRESS_ELINE__ 27
+
+module dstress.nocompile.o.opCmp_06_I;
+
+interface Interface{
+	int test(int);
+}
+
+class Class : Interface{
+	int test(int i){
+		return ++i;
+	}
+}
+
+void main(){
+	Interface a = new Class();
+	Interface b = new Class();
+
+	assert(a <> b);
+}
\ No newline at end of file
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/nocompile/o/opCmp_06_J.d	Wed Sep 07 22:34:23 2005 +0000
@@ -0,0 +1,28 @@
+// $HeadURL$
+// $Date$
+// $Author$
+
+// @author@	<jmjmak@utu.invalid.fi>
+// @date@	2005-08-31
+// @uri@	news:df4t72$27kf$1@digitaldaemon.com
+
+// __DSTRESS_ELINE__ 27
+
+module dstress.nocompile.o.opCmp_06_J;
+
+interface Interface{
+	int test(int);
+}
+
+class Class : Interface{
+	int test(int i){
+		return ++i;
+	}
+}
+
+void main(){
+	Interface a = new Class();
+	Interface b = new Class();
+
+	assert(a <>= b);
+}
\ No newline at end of file
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/nocompile/o/opCmp_06_K.d	Wed Sep 07 22:34:23 2005 +0000
@@ -0,0 +1,28 @@
+// $HeadURL$
+// $Date$
+// $Author$
+
+// @author@	<jmjmak@utu.invalid.fi>
+// @date@	2005-08-31
+// @uri@	news:df4t72$27kf$1@digitaldaemon.com
+
+// __DSTRESS_ELINE__ 27
+
+module dstress.nocompile.o.opCmp_06_K;
+
+interface Interface{
+	int test(int);
+}
+
+class Class : Interface{
+	int test(int i){
+		return ++i;
+	}
+}
+
+void main(){
+	Interface a = new Class();
+	Interface b = new Class();
+
+	assert(a !<= b);
+}
\ No newline at end of file
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/nocompile/o/opCmp_06_L.d	Wed Sep 07 22:34:23 2005 +0000
@@ -0,0 +1,28 @@
+// $HeadURL$
+// $Date$
+// $Author$
+
+// @author@	<jmjmak@utu.invalid.fi>
+// @date@	2005-08-31
+// @uri@	news:df4t72$27kf$1@digitaldaemon.com
+
+// __DSTRESS_ELINE__ 27
+
+module dstress.nocompile.o.opCmp_06_L;
+
+interface Interface{
+	int test(int);
+}
+
+class Class : Interface{
+	int test(int i){
+		return ++i;
+	}
+}
+
+void main(){
+	Interface a = new Class();
+	Interface b = new Class();
+
+	assert(a !< b);
+}
\ No newline at end of file
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/nocompile/o/opCmp_06_M.d	Wed Sep 07 22:34:23 2005 +0000
@@ -0,0 +1,28 @@
+// $HeadURL$
+// $Date$
+// $Author$
+
+// @author@	<jmjmak@utu.invalid.fi>
+// @date@	2005-08-31
+// @uri@	news:df4t72$27kf$1@digitaldaemon.com
+
+// __DSTRESS_ELINE__ 27
+
+module dstress.nocompile.o.opCmp_06_M;
+
+interface Interface{
+	int test(int);
+}
+
+class Class : Interface{
+	int test(int i){
+		return ++i;
+	}
+}
+
+void main(){
+	Interface a = new Class();
+	Interface b = new Class();
+
+	assert(a !>= b);
+}
\ No newline at end of file
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/nocompile/o/opCmp_06_N.d	Wed Sep 07 22:34:23 2005 +0000
@@ -0,0 +1,28 @@
+// $HeadURL$
+// $Date$
+// $Author$
+
+// @author@	<jmjmak@utu.invalid.fi>
+// @date@	2005-08-31
+// @uri@	news:df4t72$27kf$1@digitaldaemon.com
+
+// __DSTRESS_ELINE__ 27
+
+module dstress.nocompile.o.opCmp_06_N;
+
+interface Interface{
+	int test(int);
+}
+
+class Class : Interface{
+	int test(int i){
+		return ++i;
+	}
+}
+
+void main(){
+	Interface a = new Class();
+	Interface b = new Class();
+
+	assert(a !> b);
+}
\ No newline at end of file
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/nocompile/o/opCmp_06_O.d	Wed Sep 07 22:34:23 2005 +0000
@@ -0,0 +1,28 @@
+// $HeadURL$
+// $Date$
+// $Author$
+
+// @author@	<jmjmak@utu.invalid.fi>
+// @date@	2005-08-31
+// @uri@	news:df4t72$27kf$1@digitaldaemon.com
+
+// __DSTRESS_ELINE__ 27
+
+module dstress.nocompile.o.opCmp_06_O;
+
+interface Interface{
+	int test(int);
+}
+
+class Class : Interface{
+	int test(int i){
+		return ++i;
+	}
+}
+
+void main(){
+	Interface a = new Class();
+	Interface b = new Class();
+
+	assert(a !<> b);
+}
\ No newline at end of file