changeset 861:cb9e1f41478c

Chris Miller <chris@dprogramming.com> 2006-02-20 news:op.s5anrdhxpo9bzi@moe
author thomask
date Fri, 24 Feb 2006 07:26:09 +0000
parents bedacf8199bc
children 095c4b3c140b
files nocompile/t/template_29_A.d nocompile/t/template_29_B.d nocompile/t/template_29_C.d nocompile/t/template_29_D.d run/t/typeid_88_A.d run/t/typeid_88_B.d run/t/typeid_88_C.d run/t/typeid_88_D.d run/t/typeid_88_E.d run/t/typeid_88_F.d
diffstat 10 files changed, 90 insertions(+), 8 deletions(-) [+]
line wrap: on
line diff
--- a/nocompile/t/template_29_A.d	Fri Feb 24 07:25:57 2006 +0000
+++ b/nocompile/t/template_29_A.d	Fri Feb 24 07:26:09 2006 +0000
@@ -7,8 +7,6 @@
 // @uri@	news:dt2eo3$tea$1@digitaldaemon.com
 // @desc@	Internal error: e2ir.c 736
 
-// __DSTRESS_ELINE__ 15
-
 module dstress.nocompile.t.template_29_A;
 
 template foo(int i){
--- a/nocompile/t/template_29_B.d	Fri Feb 24 07:25:57 2006 +0000
+++ b/nocompile/t/template_29_B.d	Fri Feb 24 07:26:09 2006 +0000
@@ -7,8 +7,6 @@
 // @uri@	news:dt2eo3$tea$1@digitaldaemon.com
 // @desc@	Internal error: e2ir.c 736
 
-// __DSTRESS_ELINE__ 16
-
 module dstress.nocompile.t.template_29_B;
 
 template foo(size_t i){
--- a/nocompile/t/template_29_C.d	Fri Feb 24 07:25:57 2006 +0000
+++ b/nocompile/t/template_29_C.d	Fri Feb 24 07:26:09 2006 +0000
@@ -7,8 +7,6 @@
 // @uri@	news:dt2eo3$tea$1@digitaldaemon.com
 // @desc@	Internal error: e2ir.c 736
 
-// __DSTRESS_ELINE__ 15
-
 module dstress.nocompile.t.template_29_C;
 
 template foo(uint i){
--- a/nocompile/t/template_29_D.d	Fri Feb 24 07:25:57 2006 +0000
+++ b/nocompile/t/template_29_D.d	Fri Feb 24 07:26:09 2006 +0000
@@ -7,8 +7,6 @@
 // @uri@	news:dt2eo3$tea$1@digitaldaemon.com
 // @desc@	Internal error: e2ir.c 736
 
-// __DSTRESS_ELINE__ 16
-
 module dstress.nocompile.t.template_29_D;
 
 template foo(size_t i){
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/run/t/typeid_88_A.d	Fri Feb 24 07:26:09 2006 +0000
@@ -0,0 +1,15 @@
+// $HeadURL$
+// $Date$
+// $Author$
+
+// @author@	Chris Miller <chris@dprogramming.com>
+// @date@	2006-02-20
+// @uri@	news:op.s5anrdhxpo9bzi@moe
+
+module dstress.run.t.typeid_88_A;
+
+int main(){
+	if(typeid(int) != typeid(short)){
+		return 0;
+	}
+}
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/run/t/typeid_88_B.d	Fri Feb 24 07:26:09 2006 +0000
@@ -0,0 +1,15 @@
+// $HeadURL$
+// $Date$
+// $Author$
+
+// @author@	Chris Miller <chris@dprogramming.com>
+// @date@	2006-02-20
+// @uri@	news:op.s5anrdhxpo9bzi@moe
+
+module dstress.run.t.typeid_88_B;
+
+int main(){
+	if(typeid(int[]) != typeid(short[])){
+		return 0;
+	}
+}
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/run/t/typeid_88_C.d	Fri Feb 24 07:26:09 2006 +0000
@@ -0,0 +1,15 @@
+// $HeadURL$
+// $Date$
+// $Author$
+
+// @author@	Chris Miller <chris@dprogramming.com>
+// @date@	2006-02-20
+// @uri@	news:op.s5anrdhxpo9bzi@moe
+
+module dstress.run.t.typeid_88_C;
+
+int main(){
+	if(typeid(int*) != typeid(short*)){
+		return 0;
+	}
+}
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/run/t/typeid_88_D.d	Fri Feb 24 07:26:09 2006 +0000
@@ -0,0 +1,15 @@
+// $HeadURL$
+// $Date$
+// $Author$
+
+// @author@	Chris Miller <chris@dprogramming.com>
+// @date@	2006-02-20
+// @uri@	news:op.s5anrdhxpo9bzi@moe
+
+module dstress.run.t.typeid_88_D;
+
+int main(){
+	if(typeid(int*[]) != typeid(short*[])){
+		return 0;
+	}
+}
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/run/t/typeid_88_E.d	Fri Feb 24 07:26:09 2006 +0000
@@ -0,0 +1,15 @@
+// $HeadURL$
+// $Date$
+// $Author$
+
+// @author@	Chris Miller <chris@dprogramming.com>
+// @date@	2006-02-20
+// @uri@	news:op.s5anrdhxpo9bzi@moe
+
+module dstress.run.t.typeid_88_E;
+
+int main(){
+	if(typeid(int[]*) != typeid(short[]*)){
+		return 0;
+	}
+}
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/run/t/typeid_88_F.d	Fri Feb 24 07:26:09 2006 +0000
@@ -0,0 +1,15 @@
+// $HeadURL$
+// $Date$
+// $Author$
+
+// @author@	Chris Miller <chris@dprogramming.com>
+// @date@	2006-02-20
+// @uri@	news:op.s5anrdhxpo9bzi@moe
+
+module dstress.run.t.typeid_88_F;
+
+int main(){
+	if(typeid(int**) != typeid(short**)){
+		return 0;
+	}
+}