changeset 1380:902d2c168029

updates for DMD-1.007
author thomask
date Sun, 04 Mar 2007 11:01:08 +0000
parents f4ba482f309c
children 86c0a56d7547
files compile/o/outer_02_A.d compile/o/outer_02_B.d compile/o/outer_02_C.d compile/o/outer_02_D.d nocompile/c/class_22_C.d nocompile/c/class_22_E.d nocompile/c/const_32_A.d nocompile/c/const_32_B.d nocompile/c/const_32_C.d nocompile/c/const_32_D.d nocompile/l/length_01.d nocompile/o/opSubAssign_18_A.d nocompile/o/opSubAssign_18_B.d nocompile/o/opSubAssign_18_C.d nocompile/o/opSubAssign_18_D.d nocompile/o/opSubAssign_18_E.d nocompile/o/opSubAssign_18_F.d nocompile/o/opSubAssign_18_G.d nocompile/o/opSubAssign_18_H.d nocompile/o/opSubAssign_18_I.d nocompile/o/opSubAssign_18_J.d nocompile/o/opSubAssign_18_K.d nocompile/o/opSubAssign_18_L.d nocompile/o/opSubAssign_18_M.d nocompile/o/opSubAssign_18_N.d nocompile/o/opSubAssign_18_O.d nocompile/o/opSubAssign_18_P.d nocompile/o/override_10.d nocompile/t/template_30_A.d nocompile/t/template_30_B.d nocompile/t/template_30_C.d nocompile/t/template_30_D.d nocompile/t/this_10_D.d nocompile/t/this_10_E.d nocompile/t/this_10_F.d nocompile/t/typedef_11_A.d nocompile/t/typedef_11_B.d nocompile/t/typedef_11_C.d nocompile/t/typedef_11_D.d nocompile/t/typedef_11_E.d nocompile/t/typedef_11_F.d nocompile/t/typedef_11_G.d run/a/array_initialization_27_C.d run/a/array_initialization_27_D.d run/a/asm_cvtpd2pi_01_A.d run/a/asm_cvtpd2pi_01_B.d run/a/asm_cvtps2pi_01_A.d run/a/asm_cvtps2pi_01_B.d run/a/auto_13_A.d run/a/auto_13_B.d run/a/auto_14_A.d run/a/auto_14_B.d run/i/import_11_A.d run/i/import_11_B.d run/length_01.d run/m/mixin_15_A.d run/m/mixin_15_B.d run/m/mixin_15_C.d run/m/mixin_16_A.d run/m/mixin_16_B.d run/m/mixin_16_C.d run/m/mixin_16_D.d run/o/opIn_01_A.d run/o/opIn_01_B.d run/o/opIn_r_01_A.d run/o/opIn_r_01_B.d run/p/ptr_11_A.d run/p/ptr_12_A.d run/return_06.d run/s/string_postfix_07_B.d run/struct_12.d run/t/template_32_A.d run/t/template_32_B.d run/t/template_32_C.d run/t/template_32_D.d run/t/template_32_E.d run/t/template_32_F.d run/t/template_32_G.d run/t/template_32_H.d run/t/template_32_I.d run/t/template_32_J.d run/t/template_32_K.d run/t/template_32_L.d run/t/template_32_M.d run/t/template_32_N.d run/t/template_32_O.d run/t/template_32_P.d run/t/template_32_Q.d run/t/template_32_R.d run/t/template_32_S.d run/t/template_32_T.d run/t/template_32_U.d
diffstat 92 files changed, 142 insertions(+), 78 deletions(-) [+]
line wrap: on
line diff
--- a/compile/o/outer_02_A.d	Wed Feb 28 00:30:28 2007 +0000
+++ b/compile/o/outer_02_A.d	Sun Mar 04 11:01:08 2007 +0000
@@ -13,7 +13,7 @@
 	class Inner{
 		this() {
 			typeof(this.outer) x;
-			static assert(Outer == typeof(x));
+			static assert(is(typeof(x) == Outer));
 		}
 	}
 }
--- a/compile/o/outer_02_B.d	Wed Feb 28 00:30:28 2007 +0000
+++ b/compile/o/outer_02_B.d	Sun Mar 04 11:01:08 2007 +0000
@@ -13,7 +13,7 @@
 	class Inner{
 		void foo() {
 			typeof(this.outer) x;
-			static assert(Outer == typeof(x));
+			static assert(is(typeof(x) == Outer));
 		}
 	}
 }
--- a/compile/o/outer_02_C.d	Wed Feb 28 00:30:28 2007 +0000
+++ b/compile/o/outer_02_C.d	Sun Mar 04 11:01:08 2007 +0000
@@ -14,7 +14,7 @@
 		class Inner{
 			void foo() {
 				typeof(this.outer) x;
-				static assert(Outer == typeof(x));
+				static assert(is(typeof(x) == Outer));
 			}
 		}
 	}
--- a/compile/o/outer_02_D.d	Wed Feb 28 00:30:28 2007 +0000
+++ b/compile/o/outer_02_D.d	Sun Mar 04 11:01:08 2007 +0000
@@ -14,7 +14,7 @@
 		class Inner{
 			void foo() {
 				typeof(this.outer.outer) x;
-				static assert(Box == typeof(x));
+				static assert(is(typeof(x) == Box));
 			}
 		}
 	}
--- a/nocompile/c/class_22_C.d	Wed Feb 28 00:30:28 2007 +0000
+++ b/nocompile/c/class_22_C.d	Sun Mar 04 11:01:08 2007 +0000
@@ -6,8 +6,9 @@
 // @date@	2006-03-01
 // @uri@	news:du4ojh$1b0n$1@digitaldaemon.com
 // @desc@	dmd: toobj.c:191: virtual void ClassDeclaration::toObjFile(): Assertion `!scope' failed.
+// @uri@	http://d.puremagic.com/issues/show_bug.cgi?id=717
 
-// __DSTRESS_ELINE__ 18
+// __DSTRESS_ELINE__ 19
 
 module dstress.nocompile.c.class_22_C;
 
--- a/nocompile/c/class_22_E.d	Wed Feb 28 00:30:28 2007 +0000
+++ b/nocompile/c/class_22_E.d	Sun Mar 04 11:01:08 2007 +0000
@@ -6,8 +6,9 @@
 // @date@	2006-03-01
 // @uri@	news:du4ojh$1b0n$1@digitaldaemon.com
 // @desc@	dmd: toobj.c:191: virtual void ClassDeclaration::toObjFile(): Assertion `!scope' failed.
+// @uri@	http://d.puremagic.com/issues/show_bug.cgi?id=717
 
-// __DSTRESS_ELINE__ 23
+// __DSTRESS_ELINE__ 16
 
 module dstress.run.c.class_22_E;
 
--- a/nocompile/c/const_32_A.d	Wed Feb 28 00:30:28 2007 +0000
+++ b/nocompile/c/const_32_A.d	Sun Mar 04 11:01:08 2007 +0000
@@ -5,8 +5,9 @@
 // @author@	Wang Zhen <nehzgnaw@gmail.com>
 // @date@	2006-02-17
 // @uri@	news:dt4ahd$2ikp$2@digitaldaemon.com
+// @uri@	http://d.puremagic.com/issues/show_bug.cgi?id=713
 
-// __DSTRESS_ELINE__ 14
+// __DSTRESS_ELINE__ 15
 
 module dstress.nocompile.c.const_32_A;
 
--- a/nocompile/c/const_32_B.d	Wed Feb 28 00:30:28 2007 +0000
+++ b/nocompile/c/const_32_B.d	Sun Mar 04 11:01:08 2007 +0000
@@ -5,8 +5,9 @@
 // @author@	Wang Zhen <nehzgnaw@gmail.com>
 // @date@	2006-02-17
 // @uri@	news:dt4ahd$2ikp$2@digitaldaemon.com
+// @uri@	http://d.puremagic.com/issues/show_bug.cgi?id=713
 
-// __DSTRESS_ELINE__ 14
+// __DSTRESS_ELINE__ 15
 
 module dstress.nocompile.c.const_32_B;
 
--- a/nocompile/c/const_32_C.d	Wed Feb 28 00:30:28 2007 +0000
+++ b/nocompile/c/const_32_C.d	Sun Mar 04 11:01:08 2007 +0000
@@ -5,8 +5,9 @@
 // @author@	Wang Zhen <nehzgnaw@gmail.com>
 // @date@	2006-02-17
 // @uri@	news:dt4ahd$2ikp$2@digitaldaemon.com
+// @uri@	http://d.puremagic.com/issues/show_bug.cgi?id=713
 
-// __DSTRESS_ELINE__ 14
+// __DSTRESS_ELINE__ 15
 
 module dstress.nocompile.c.const_32_C;
 
--- a/nocompile/c/const_32_D.d	Wed Feb 28 00:30:28 2007 +0000
+++ b/nocompile/c/const_32_D.d	Sun Mar 04 11:01:08 2007 +0000
@@ -5,8 +5,9 @@
 // @author@	Wang Zhen <nehzgnaw@gmail.com>
 // @date@	2006-02-17
 // @uri@	news:dt4ahd$2ikp$2@digitaldaemon.com
+// @uri@	http://d.puremagic.com/issues/show_bug.cgi?id=713
 
-// __DSTRESS_ELINE__ 14
+// __DSTRESS_ELINE__ 15
 
 module dstress.nocompile.c.const_32_D;
 
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/nocompile/l/length_01.d	Sun Mar 04 11:01:08 2007 +0000
@@ -0,0 +1,21 @@
+// $HeadURL$
+// $Date$
+// $Author$
+
+// @url@	http://d.puremagic.com/issues/show_bug.cgi?id=950
+// @desc@	[Issue 950] Missing filename and line number: conflict between implicit length in [...] and explicit length declared in the scope
+
+// __DSTRESS_ELINE__ 19
+
+module dstress.nocompile.l.length_01;
+
+int main(){
+	byte[3] array;
+	array[0]=2;
+	array[1]=4;
+	array[2]=8;
+	int length=1;
+	assert(length-1==0);
+	assert(array[length-1]==8);
+	return 0;
+}
--- a/nocompile/o/opSubAssign_18_A.d	Wed Feb 28 00:30:28 2007 +0000
+++ b/nocompile/o/opSubAssign_18_A.d	Sun Mar 04 11:01:08 2007 +0000
@@ -4,7 +4,7 @@
 
 // @author@	Thomas Kuehne <thomas-dloop@kuehne.cn>
 // @date@	2005-11-02
-// @uri@	news:th-0AA4B81A0D5ACA3BC73EDCE5@birke.kuehne.cn
+// @uri@	http://d.puremagic.com/issues/show_bug.cgi?id=725
 
 // __DSTRESS_ELINE__ 21
 
--- a/nocompile/o/opSubAssign_18_B.d	Wed Feb 28 00:30:28 2007 +0000
+++ b/nocompile/o/opSubAssign_18_B.d	Sun Mar 04 11:01:08 2007 +0000
@@ -4,7 +4,7 @@
 
 // @author@	Thomas Kuehne <thomas-dloop@kuehne.cn>
 // @date@	2005-11-02
-// @uri@	news:th-0AA4B81A0D5ACA3BC73EDCE5@birke.kuehne.cn
+// @uri@	http://d.puremagic.com/issues/show_bug.cgi?id=725
 
 // __DSTRESS_ELINE__ 21
 
--- a/nocompile/o/opSubAssign_18_C.d	Wed Feb 28 00:30:28 2007 +0000
+++ b/nocompile/o/opSubAssign_18_C.d	Sun Mar 04 11:01:08 2007 +0000
@@ -4,7 +4,7 @@
 
 // @author@	Thomas Kuehne <thomas-dloop@kuehne.cn>
 // @date@	2005-11-02
-// @uri@	news:th-0AA4B81A0D5ACA3BC73EDCE5@birke.kuehne.cn
+// @uri@	http://d.puremagic.com/issues/show_bug.cgi?id=725
 
 // __DSTRESS_ELINE__ 21
 
--- a/nocompile/o/opSubAssign_18_D.d	Wed Feb 28 00:30:28 2007 +0000
+++ b/nocompile/o/opSubAssign_18_D.d	Sun Mar 04 11:01:08 2007 +0000
@@ -4,7 +4,7 @@
 
 // @author@	Thomas Kuehne <thomas-dloop@kuehne.cn>
 // @date@	2005-11-02
-// @uri@	news:th-0AA4B81A0D5ACA3BC73EDCE5@birke.kuehne.cn
+// @uri@	http://d.puremagic.com/issues/show_bug.cgi?id=725
 
 // __DSTRESS_ELINE__ 21
 
--- a/nocompile/o/opSubAssign_18_E.d	Wed Feb 28 00:30:28 2007 +0000
+++ b/nocompile/o/opSubAssign_18_E.d	Sun Mar 04 11:01:08 2007 +0000
@@ -4,7 +4,7 @@
 
 // @author@	Thomas Kuehne <thomas-dloop@kuehne.cn>
 // @date@	2005-11-02
-// @uri@	news:th-0AA4B81A0D5ACA3BC73EDCE5@birke.kuehne.cn
+// @uri@	http://d.puremagic.com/issues/show_bug.cgi?id=725
 
 // __DSTRESS_ELINE__ 21
 
--- a/nocompile/o/opSubAssign_18_F.d	Wed Feb 28 00:30:28 2007 +0000
+++ b/nocompile/o/opSubAssign_18_F.d	Sun Mar 04 11:01:08 2007 +0000
@@ -4,7 +4,7 @@
 
 // @author@	Thomas Kuehne <thomas-dloop@kuehne.cn>
 // @date@	2005-11-02
-// @uri@	news:th-0AA4B81A0D5ACA3BC73EDCE5@birke.kuehne.cn
+// @uri@	http://d.puremagic.com/issues/show_bug.cgi?id=725
 
 // __DSTRESS_ELINE__ 21
 
--- a/nocompile/o/opSubAssign_18_G.d	Wed Feb 28 00:30:28 2007 +0000
+++ b/nocompile/o/opSubAssign_18_G.d	Sun Mar 04 11:01:08 2007 +0000
@@ -4,7 +4,7 @@
 
 // @author@	Thomas Kuehne <thomas-dloop@kuehne.cn>
 // @date@	2005-11-02
-// @uri@	news:th-0AA4B81A0D5ACA3BC73EDCE5@birke.kuehne.cn
+// @uri@	http://d.puremagic.com/issues/show_bug.cgi?id=725
 
 // __DSTRESS_ELINE__ 21
 
--- a/nocompile/o/opSubAssign_18_H.d	Wed Feb 28 00:30:28 2007 +0000
+++ b/nocompile/o/opSubAssign_18_H.d	Sun Mar 04 11:01:08 2007 +0000
@@ -4,7 +4,7 @@
 
 // @author@	Thomas Kuehne <thomas-dloop@kuehne.cn>
 // @date@	2005-11-02
-// @uri@	news:th-0AA4B81A0D5ACA3BC73EDCE5@birke.kuehne.cn
+// @uri@	http://d.puremagic.com/issues/show_bug.cgi?id=725
 
 // __DSTRESS_ELINE__ 21
 
--- a/nocompile/o/opSubAssign_18_I.d	Wed Feb 28 00:30:28 2007 +0000
+++ b/nocompile/o/opSubAssign_18_I.d	Sun Mar 04 11:01:08 2007 +0000
@@ -4,7 +4,7 @@
 
 // @author@	Thomas Kuehne <thomas-dloop@kuehne.cn>
 // @date@	2005-11-02
-// @uri@	news:th-0AA4B81A0D5ACA3BC73EDCE5@birke.kuehne.cn
+// @uri@	http://d.puremagic.com/issues/show_bug.cgi?id=725
 
 // __DSTRESS_ELINE__ 21
 
--- a/nocompile/o/opSubAssign_18_J.d	Wed Feb 28 00:30:28 2007 +0000
+++ b/nocompile/o/opSubAssign_18_J.d	Sun Mar 04 11:01:08 2007 +0000
@@ -4,7 +4,7 @@
 
 // @author@	Thomas Kuehne <thomas-dloop@kuehne.cn>
 // @date@	2005-11-02
-// @uri@	news:th-0AA4B81A0D5ACA3BC73EDCE5@birke.kuehne.cn
+// @uri@	http://d.puremagic.com/issues/show_bug.cgi?id=725
 
 // __DSTRESS_ELINE__ 21
 
--- a/nocompile/o/opSubAssign_18_K.d	Wed Feb 28 00:30:28 2007 +0000
+++ b/nocompile/o/opSubAssign_18_K.d	Sun Mar 04 11:01:08 2007 +0000
@@ -4,7 +4,7 @@
 
 // @author@	Thomas Kuehne <thomas-dloop@kuehne.cn>
 // @date@	2005-11-02
-// @uri@	news:th-0AA4B81A0D5ACA3BC73EDCE5@birke.kuehne.cn
+// @uri@	http://d.puremagic.com/issues/show_bug.cgi?id=725
 
 // __DSTRESS_ELINE__ 21
 
--- a/nocompile/o/opSubAssign_18_L.d	Wed Feb 28 00:30:28 2007 +0000
+++ b/nocompile/o/opSubAssign_18_L.d	Sun Mar 04 11:01:08 2007 +0000
@@ -4,7 +4,7 @@
 
 // @author@	Thomas Kuehne <thomas-dloop@kuehne.cn>
 // @date@	2005-11-02
-// @uri@	news:th-0AA4B81A0D5ACA3BC73EDCE5@birke.kuehne.cn
+// @uri@	http://d.puremagic.com/issues/show_bug.cgi?id=725
 
 // __DSTRESS_ELINE__ 21
 
--- a/nocompile/o/opSubAssign_18_M.d	Wed Feb 28 00:30:28 2007 +0000
+++ b/nocompile/o/opSubAssign_18_M.d	Sun Mar 04 11:01:08 2007 +0000
@@ -4,7 +4,7 @@
 
 // @author@	Thomas Kuehne <thomas-dloop@kuehne.cn>
 // @date@	2005-11-02
-// @uri@	news:th-0AA4B81A0D5ACA3BC73EDCE5@birke.kuehne.cn
+// @uri@	http://d.puremagic.com/issues/show_bug.cgi?id=725
 
 // __DSTRESS_ELINE__ 21
 
--- a/nocompile/o/opSubAssign_18_N.d	Wed Feb 28 00:30:28 2007 +0000
+++ b/nocompile/o/opSubAssign_18_N.d	Sun Mar 04 11:01:08 2007 +0000
@@ -4,7 +4,7 @@
 
 // @author@	Thomas Kuehne <thomas-dloop@kuehne.cn>
 // @date@	2005-11-02
-// @uri@	news:th-0AA4B81A0D5ACA3BC73EDCE5@birke.kuehne.cn
+// @uri@	http://d.puremagic.com/issues/show_bug.cgi?id=725
 
 // __DSTRESS_ELINE__ 21
 
--- a/nocompile/o/opSubAssign_18_O.d	Wed Feb 28 00:30:28 2007 +0000
+++ b/nocompile/o/opSubAssign_18_O.d	Sun Mar 04 11:01:08 2007 +0000
@@ -4,7 +4,7 @@
 
 // @author@	Thomas Kuehne <thomas-dloop@kuehne.cn>
 // @date@	2005-11-02
-// @uri@	news:th-0AA4B81A0D5ACA3BC73EDCE5@birke.kuehne.cn
+// @uri@	http://d.puremagic.com/issues/show_bug.cgi?id=725
 
 // __DSTRESS_ELINE__ 21
 
--- a/nocompile/o/opSubAssign_18_P.d	Wed Feb 28 00:30:28 2007 +0000
+++ b/nocompile/o/opSubAssign_18_P.d	Sun Mar 04 11:01:08 2007 +0000
@@ -4,7 +4,7 @@
 
 // @author@	Thomas Kuehne <thomas-dloop@kuehne.cn>
 // @date@	2005-11-02
-// @uri@	news:th-0AA4B81A0D5ACA3BC73EDCE5@birke.kuehne.cn
+// @uri@	http://d.puremagic.com/issues/show_bug.cgi?id=725
 
 // __DSTRESS_ELINE__ 21
 
--- a/nocompile/o/override_10.d	Wed Feb 28 00:30:28 2007 +0000
+++ b/nocompile/o/override_10.d	Sun Mar 04 11:01:08 2007 +0000
@@ -5,8 +5,9 @@
 // @author@	Sean Kelly <sean@f4.ca>
 // @date@	2005-04-15
 // @uri@	news:d3pa4s$17qk$1@digitaldaemon.com
+// @uri@	http://d.puremagic.com/issues/show_bug.cgi?id=726
 
-// __DSTRESS_ELINE__ 21
+// __DSTRESS_ELINE__ 22
 
 module dstress.nocompile.o.override_10;
 
--- a/nocompile/t/template_30_A.d	Wed Feb 28 00:30:28 2007 +0000
+++ b/nocompile/t/template_30_A.d	Sun Mar 04 11:01:08 2007 +0000
@@ -5,8 +5,9 @@
 // @author@	Wang Zhen <nehzgnaw@gmail.com>
 // @date@	2006-02-17
 // @uri@	news:dt4a71$2hva$1@digitaldaemon.com
+// @uri@	http://d.puremagic.com/issues/show_bug.cgi?id=722
 
-// __DSTRESS_ELINE__ 17 
+// __DSTRESS_ELINE__ 18
 
 module dstress.nocompile.t.template_30_A;
 
--- a/nocompile/t/template_30_B.d	Wed Feb 28 00:30:28 2007 +0000
+++ b/nocompile/t/template_30_B.d	Sun Mar 04 11:01:08 2007 +0000
@@ -5,8 +5,9 @@
 // @author@	Wang Zhen <nehzgnaw@gmail.com>
 // @date@	2006-02-17
 // @uri@	news:dt4a71$2hva$1@digitaldaemon.com
+// @uri@	http://d.puremagic.com/issues/show_bug.cgi?id=722
 
-// __DSTRESS_ELINE__ 17 
+// __DSTRESS_ELINE__ 18
 
 module dstress.nocompile.t.template_30_B;
 
--- a/nocompile/t/template_30_C.d	Wed Feb 28 00:30:28 2007 +0000
+++ b/nocompile/t/template_30_C.d	Sun Mar 04 11:01:08 2007 +0000
@@ -5,8 +5,9 @@
 // @author@	Wang Zhen <nehzgnaw@gmail.com>
 // @date@	2006-02-17
 // @uri@	news:dt4a71$2hva$1@digitaldaemon.com
+// @uri@	http://d.puremagic.com/issues/show_bug.cgi?id=722
 
-// __DSTRESS_ELINE__ 18 
+// __DSTRESS_ELINE__ 19
 
 module dstress.nocompile.t.template_30_C;
 
--- a/nocompile/t/template_30_D.d	Wed Feb 28 00:30:28 2007 +0000
+++ b/nocompile/t/template_30_D.d	Sun Mar 04 11:01:08 2007 +0000
@@ -5,6 +5,7 @@
 // @author@	Wang Zhen <nehzgnaw@gmail.com>
 // @date@	2006-02-17
 // @uri@	news:dt4a71$2hva$1@digitaldaemon.com
+// @uri@	http://d.puremagic.com/issues/show_bug.cgi?id=722
 
 module dstress.nocompile.t.template_30_D;
 
--- a/nocompile/t/this_10_D.d	Wed Feb 28 00:30:28 2007 +0000
+++ b/nocompile/t/this_10_D.d	Sun Mar 04 11:01:08 2007 +0000
@@ -6,8 +6,9 @@
 // @date@	2006-03-02
 // @uri@	news:du4ong$1b0n$2@digitaldaemon.com
 // @desc@	func.c:373: virtual void FuncDeclaration::semantic3(Scope*): Assertion `0' failed.
+// @uri@	http://d.puremagic.com/issues/show_bug.cgi?id=723
 
-// __DSTRESS_ELINE__ 16
+// __DSTRESS_ELINE__ 17
 
 module dstress.nocompile.t.this_10_D;
 
--- a/nocompile/t/this_10_E.d	Wed Feb 28 00:30:28 2007 +0000
+++ b/nocompile/t/this_10_E.d	Sun Mar 04 11:01:08 2007 +0000
@@ -6,8 +6,9 @@
 // @date@	2006-03-02
 // @uri@	news:du4ong$1b0n$2@digitaldaemon.com
 // @desc@	func.c:373: virtual void FuncDeclaration::semantic3(Scope*): Assertion `0' failed.
+// @uri@	http://d.puremagic.com/issues/show_bug.cgi?id=723
 
-// __DSTRESS_ELINE__ 16
+// __DSTRESS_ELINE__ 17
 
 module dstress.nocompile.t.this_10_E;
 
--- a/nocompile/t/this_10_F.d	Wed Feb 28 00:30:28 2007 +0000
+++ b/nocompile/t/this_10_F.d	Sun Mar 04 11:01:08 2007 +0000
@@ -6,8 +6,9 @@
 // @date@	2006-03-02
 // @uri@	news:du4ong$1b0n$2@digitaldaemon.com
 // @desc@	func.c:373: virtual void FuncDeclaration::semantic3(Scope*): Assertion `0' failed.
+// @uri@	http://d.puremagic.com/issues/show_bug.cgi?id=723
 
-// __DSTRESS_ELINE__ 16
+// __DSTRESS_ELINE__ 17
 
 module dstress.nocompile.t.this_10_F;
 
--- a/nocompile/t/typedef_11_A.d	Wed Feb 28 00:30:28 2007 +0000
+++ b/nocompile/t/typedef_11_A.d	Sun Mar 04 11:01:08 2007 +0000
@@ -4,7 +4,7 @@
 
 // @author@	Deewiant <deewiant.doesnotlike.spam@gmail.com>
 // @date@	2006-02-11
-// @uri@	news:dskdle$1838$1@digitaldaemon.com
+// @uri@	http://d.puremagic.com/issues/show_bug.cgi?id=724
 
 // __DSTRESS_ELINE__ 17
 
--- a/nocompile/t/typedef_11_B.d	Wed Feb 28 00:30:28 2007 +0000
+++ b/nocompile/t/typedef_11_B.d	Sun Mar 04 11:01:08 2007 +0000
@@ -4,7 +4,7 @@
 
 // @author@	Deewiant <deewiant.doesnotlike.spam@gmail.com>
 // @date@	2006-02-11
-// @uri@	news:dskdle$1838$1@digitaldaemon.com
+// @uri@	http://d.puremagic.com/issues/show_bug.cgi?id=724
 
 // __DSTRESS_ELINE__ 17
 
--- a/nocompile/t/typedef_11_C.d	Wed Feb 28 00:30:28 2007 +0000
+++ b/nocompile/t/typedef_11_C.d	Sun Mar 04 11:01:08 2007 +0000
@@ -4,7 +4,7 @@
 
 // @author@	Deewiant <deewiant.doesnotlike.spam@gmail.com>
 // @date@	2006-02-11
-// @uri@	news:dskdle$1838$1@digitaldaemon.com
+// @uri@	http://d.puremagic.com/issues/show_bug.cgi?id=724
 
 // __DSTRESS_ELINE__ 17
 
--- a/nocompile/t/typedef_11_D.d	Wed Feb 28 00:30:28 2007 +0000
+++ b/nocompile/t/typedef_11_D.d	Sun Mar 04 11:01:08 2007 +0000
@@ -4,7 +4,7 @@
 
 // @author@	Deewiant <deewiant.doesnotlike.spam@gmail.com>
 // @date@	2006-02-11
-// @uri@	news:dskdle$1838$1@digitaldaemon.com
+// @uri@	http://d.puremagic.com/issues/show_bug.cgi?id=724
 
 // __DSTRESS_ELINE__ 16
 
--- a/nocompile/t/typedef_11_E.d	Wed Feb 28 00:30:28 2007 +0000
+++ b/nocompile/t/typedef_11_E.d	Sun Mar 04 11:01:08 2007 +0000
@@ -4,7 +4,7 @@
 
 // @author@	Deewiant <deewiant.doesnotlike.spam@gmail.com>
 // @date@	2006-02-11
-// @uri@	news:dskdle$1838$1@digitaldaemon.com
+// @uri@	http://d.puremagic.com/issues/show_bug.cgi?id=724
 
 // __DSTRESS_ELINE__ 16
 
--- a/nocompile/t/typedef_11_F.d	Wed Feb 28 00:30:28 2007 +0000
+++ b/nocompile/t/typedef_11_F.d	Sun Mar 04 11:01:08 2007 +0000
@@ -4,7 +4,7 @@
 
 // @author@	Deewiant <deewiant.doesnotlike.spam@gmail.com>
 // @date@	2006-02-11
-// @uri@	news:dskdle$1838$1@digitaldaemon.com
+// @uri@	http://d.puremagic.com/issues/show_bug.cgi?id=724
 
 // __DSTRESS_ELINE__ 16
 
--- a/nocompile/t/typedef_11_G.d	Wed Feb 28 00:30:28 2007 +0000
+++ b/nocompile/t/typedef_11_G.d	Sun Mar 04 11:01:08 2007 +0000
@@ -4,7 +4,7 @@
 
 // @author@	Deewiant <deewiant.doesnotlike.spam@gmail.com>
 // @date@	2006-02-11
-// @uri@	news:dskdle$1838$1@digitaldaemon.com
+// @uri@	http://d.puremagic.com/issues/show_bug.cgi?id=724
 
 // __DSTRESS_ELINE__ 14
 
--- a/run/a/array_initialization_27_C.d	Wed Feb 28 00:30:28 2007 +0000
+++ b/run/a/array_initialization_27_C.d	Sun Mar 04 11:01:08 2007 +0000
@@ -2,6 +2,9 @@
 // $Date$
 // $Author$
 
+// @uri@	http://d.puremagic.com/issues/show_bug.cgi?id=706
+// @desc@	[Issue 706] incorrect type deduction for array literals in functions
+
 module dstress.run.a.array_initialization_27_C;
 
 int main(){
--- a/run/a/array_initialization_27_D.d	Wed Feb 28 00:30:28 2007 +0000
+++ b/run/a/array_initialization_27_D.d	Sun Mar 04 11:01:08 2007 +0000
@@ -2,6 +2,9 @@
 // $Date$
 // $Author$
 
+// @uri@	http://d.puremagic.com/issues/show_bug.cgi?id=706
+// @desc@	[Issue 706] incorrect type deduction for array literals in functions
+
 module dstress.run.a.array_initialization_27_D;
 
 auto a = [[1, 2], [3, 4]];
--- a/run/a/asm_cvtpd2pi_01_A.d	Wed Feb 28 00:30:28 2007 +0000
+++ b/run/a/asm_cvtpd2pi_01_A.d	Sun Mar 04 11:01:08 2007 +0000
@@ -2,6 +2,9 @@
 // $Date$
 // $Author$
 
+// @uri@	http://d.puremagic.com/issues/show_bug.cgi?id=709
+// @desc@	[Issue 709] inline assembler: "CVTPD2PI mm, xmm/m128" fails to compile
+
 module dstress.run.a.asm_cvtpd2pi_01_A;
 
 version(D_InlineAsm_X86){
--- a/run/a/asm_cvtpd2pi_01_B.d	Wed Feb 28 00:30:28 2007 +0000
+++ b/run/a/asm_cvtpd2pi_01_B.d	Sun Mar 04 11:01:08 2007 +0000
@@ -2,6 +2,9 @@
 // $Date$
 // $Author$
 
+// @uri@	http://d.puremagic.com/issues/show_bug.cgi?id=709
+// @desc@	[Issue 709] inline assembler: "CVTPD2PI mm, xmm/m128" fails to compile
+
 module dstress.run.a.asm_cvtpd2pi_01_B;
 
 version(D_InlineAsm_X86){
--- a/run/a/asm_cvtps2pi_01_A.d	Wed Feb 28 00:30:28 2007 +0000
+++ b/run/a/asm_cvtps2pi_01_A.d	Sun Mar 04 11:01:08 2007 +0000
@@ -2,6 +2,9 @@
 // $Date$
 // $Author$
 
+// @uri@	http://d.puremagic.com/issues/show_bug.cgi?id=708
+// @desc@	[Issue 708] inline assembler: "CVTPS2PI mm, xmm/m128" fails to compile
+
 module dstress.run.a.asm_cvtps2pi_01_A;
 
 version(D_InlineAsm_X86){
--- a/run/a/asm_cvtps2pi_01_B.d	Wed Feb 28 00:30:28 2007 +0000
+++ b/run/a/asm_cvtps2pi_01_B.d	Sun Mar 04 11:01:08 2007 +0000
@@ -2,6 +2,9 @@
 // $Date$
 // $Author$
 
+// @uri@	http://d.puremagic.com/issues/show_bug.cgi?id=708
+// @desc@	[Issue 708] inline assembler: "CVTPS2PI mm, xmm/m128" fails to compile
+
 module dstress.run.a.asm_cvtps2pi_01_B;
 
 version(D_InlineAsm_X86){
--- a/run/a/auto_13_A.d	Wed Feb 28 00:30:28 2007 +0000
+++ b/run/a/auto_13_A.d	Sun Mar 04 11:01:08 2007 +0000
@@ -5,6 +5,7 @@
 // @author@	Chris Sauls <ibisbasenji@gmail.com>
 // @date@	2005-12-10
 // @uri@	news:dneava$evs$1@digitaldaemon.com
+// @uri@	http://d.puremagic.com/issues/show_bug.cgi?id=705
 
 module dstress.run.a.auto_13_A;
 
--- a/run/a/auto_13_B.d	Wed Feb 28 00:30:28 2007 +0000
+++ b/run/a/auto_13_B.d	Sun Mar 04 11:01:08 2007 +0000
@@ -5,6 +5,7 @@
 // @author@	Chris Sauls <ibisbasenji@gmail.com>
 // @date@	2005-12-10
 // @uri@	news:dneava$evs$1@digitaldaemon.com
+// @uri@	http://d.puremagic.com/issues/show_bug.cgi?id=705
 
 module dstress.run.a.auto_13_B;
 
--- a/run/a/auto_14_A.d	Wed Feb 28 00:30:28 2007 +0000
+++ b/run/a/auto_14_A.d	Sun Mar 04 11:01:08 2007 +0000
@@ -5,6 +5,7 @@
 // @author@	Sean Kelly <sean@f4.ca>
 // @date@	2006-01-24
 // @uri@	news:dr5uqg$2hn7$1@digitaldaemon.com
+// @uri@	http://d.puremagic.com/issues/show_bug.cgi?id=704
 
 module dstress.run.a.auto_14_A;
 
--- a/run/a/auto_14_B.d	Wed Feb 28 00:30:28 2007 +0000
+++ b/run/a/auto_14_B.d	Sun Mar 04 11:01:08 2007 +0000
@@ -5,6 +5,7 @@
 // @author@	Sean Kelly <sean@f4.ca>
 // @date@	2006-01-24
 // @uri@	news:dr5uqg$2hn7$1@digitaldaemon.com
+// @uri@	http://d.puremagic.com/issues/show_bug.cgi?id=704
 
 module dstress.run.a.auto_14_B;
 
--- a/run/i/import_11_A.d	Wed Feb 28 00:30:28 2007 +0000
+++ b/run/i/import_11_A.d	Sun Mar 04 11:01:08 2007 +0000
@@ -5,6 +5,7 @@
 // @author@	Stewart Gordon <smjg_1998@yahoo.com>
 // @date@	2005-10-26
 // @uri@	news:djnicb$1a5t$1@digitaldaemon.com
+// @uri@	http://d.puremagic.com/issues/show_bug.cgi?id=714
 
 // __DSTRESS_DFLAGS__ run/i/import_11_B.d
 
--- a/run/i/import_11_B.d	Wed Feb 28 00:30:28 2007 +0000
+++ b/run/i/import_11_B.d	Sun Mar 04 11:01:08 2007 +0000
@@ -5,6 +5,7 @@
 // @author@	Stewart Gordon <smjg_1998@yahoo.com>
 // @date@	2005-10-26
 // @uri@	news:djnicb$1a5t$1@digitaldaemon.com
+// @uri@	http://d.puremagic.com/issues/show_bug.cgi?id=714
 
 // __DSTRESS_DFLAGS__ run/i/import_11_A.d
 
--- a/run/length_01.d	Wed Feb 28 00:30:28 2007 +0000
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,16 +0,0 @@
-// $HeadURL$
-// $Date$
-// $Author$
-
-module dstress.run.length_01;
-
-int main(){
-	byte[3] array;
-	array[0]=2;
-	array[1]=4;
-	array[2]=8;
-	int length=1;
-	assert(length-1==0);
-	assert(array[length-1]==8);
-	return 0;
-}
--- a/run/m/mixin_15_A.d	Wed Feb 28 00:30:28 2007 +0000
+++ b/run/m/mixin_15_A.d	Sun Mar 04 11:01:08 2007 +0000
@@ -5,6 +5,7 @@
 // @author@	John C <johnch_atms@hotmail.com>
 // @date@	2006-01-24
 // @uri@	news:dr4t3d$1f24$1@digitaldaemon.com
+// @uri@	http://d.puremagic.com/issues/show_bug.cgi?id=712
 
 module dstress.run.m.mixin_15_A;
 
--- a/run/m/mixin_15_B.d	Wed Feb 28 00:30:28 2007 +0000
+++ b/run/m/mixin_15_B.d	Sun Mar 04 11:01:08 2007 +0000
@@ -5,6 +5,7 @@
 // @author@	John C <johnch_atms@hotmail.com>
 // @date@	2006-01-24
 // @uri@	news:dr4t3d$1f24$1@digitaldaemon.com
+// @uri@	http://d.puremagic.com/issues/show_bug.cgi?id=712
 
 module dstress.run.m.mixin_15_B;
 
--- a/run/m/mixin_15_C.d	Wed Feb 28 00:30:28 2007 +0000
+++ b/run/m/mixin_15_C.d	Sun Mar 04 11:01:08 2007 +0000
@@ -5,6 +5,7 @@
 // @author@	John C <johnch_atms@hotmail.com>
 // @date@	2006-01-24
 // @uri@	news:dr4t3d$1f24$1@digitaldaemon.com
+// @uri@	http://d.puremagic.com/issues/show_bug.cgi?id=712
 
 module dstress.run.m.mixin_15_C;
 
--- a/run/m/mixin_16_A.d	Wed Feb 28 00:30:28 2007 +0000
+++ b/run/m/mixin_16_A.d	Sun Mar 04 11:01:08 2007 +0000
@@ -5,6 +5,7 @@
 // @author@	Chris Miller <chris@dprogramming.com>
 // @date@	2006-01-30
 // @uri@	news:op.s36xvez5po9bzi@moe
+// @uri@	http://d.puremagic.com/issues/show_bug.cgi?id=711
 
 module dstress.run.m.mixin_16_A;
 
--- a/run/m/mixin_16_B.d	Wed Feb 28 00:30:28 2007 +0000
+++ b/run/m/mixin_16_B.d	Sun Mar 04 11:01:08 2007 +0000
@@ -5,6 +5,7 @@
 // @author@	Chris Miller <chris@dprogramming.com>
 // @date@	2006-01-30
 // @uri@	news:op.s36xvez5po9bzi@moe
+// @uri@	http://d.puremagic.com/issues/show_bug.cgi?id=711
 
 module dstress.run.m.mixin_16_B;
 
--- a/run/m/mixin_16_C.d	Wed Feb 28 00:30:28 2007 +0000
+++ b/run/m/mixin_16_C.d	Sun Mar 04 11:01:08 2007 +0000
@@ -5,6 +5,7 @@
 // @author@	Chris Miller <chris@dprogramming.com>
 // @date@	2006-01-30
 // @uri@	news:op.s36xvez5po9bzi@moe
+// @uri@	http://d.puremagic.com/issues/show_bug.cgi?id=711
 
 module dstress.run.m.mixin_16_C;
 
--- a/run/m/mixin_16_D.d	Wed Feb 28 00:30:28 2007 +0000
+++ b/run/m/mixin_16_D.d	Sun Mar 04 11:01:08 2007 +0000
@@ -5,6 +5,7 @@
 // @author@	Chris Miller <chris@dprogramming.com>
 // @date@	2006-01-30
 // @uri@	news:op.s36xvez5po9bzi@moe
+// @uri@	http://d.puremagic.com/issues/show_bug.cgi?id=711
 
 module dstress.run.m.mixin_16_D;
 
--- a/run/o/opIn_01_A.d	Wed Feb 28 00:30:28 2007 +0000
+++ b/run/o/opIn_01_A.d	Sun Mar 04 11:01:08 2007 +0000
@@ -16,7 +16,7 @@
 	S s;
 	s.x = 3;
 
-	if(s in 5 != 8){
+	if((s in 5) != 8){
 		assert(0);
 	}
 
--- a/run/o/opIn_01_B.d	Wed Feb 28 00:30:28 2007 +0000
+++ b/run/o/opIn_01_B.d	Sun Mar 04 11:01:08 2007 +0000
@@ -16,7 +16,7 @@
 	S s = new S();
 	s.x = 3;
 
-	if(s in 5 != 8){
+	if((s in 5) != 8){
 		assert(0);
 	}
 
--- a/run/o/opIn_r_01_A.d	Wed Feb 28 00:30:28 2007 +0000
+++ b/run/o/opIn_r_01_A.d	Sun Mar 04 11:01:08 2007 +0000
@@ -12,7 +12,7 @@
 
 int main(){
 	S s;
-	if(3 in s != 4){
+	if((3 in s) != 4){
 		assert(0);
 	}
 
--- a/run/o/opIn_r_01_B.d	Wed Feb 28 00:30:28 2007 +0000
+++ b/run/o/opIn_r_01_B.d	Sun Mar 04 11:01:08 2007 +0000
@@ -12,7 +12,7 @@
 
 int main(){
 	C c = new C();
-	if(3 in c != 4){
+	if((3 in c) != 4){
 		assert(0);
 	}
 
--- a/run/p/ptr_11_A.d	Wed Feb 28 00:30:28 2007 +0000
+++ b/run/p/ptr_11_A.d	Sun Mar 04 11:01:08 2007 +0000
@@ -12,7 +12,7 @@
 int main(){
 	C c = new C();
 	void delegate() d = &c.test;
-	if(d.ptr !is c){
+	if(cast(void*)d.ptr !is cast(void*)c){
 		assert(0);
 	}
 
--- a/run/p/ptr_12_A.d	Wed Feb 28 00:30:28 2007 +0000
+++ b/run/p/ptr_12_A.d	Sun Mar 04 11:01:08 2007 +0000
@@ -21,7 +21,7 @@
 	A a = new A();
 	void delegate() dg;
 
-	dg.ptr = a;
+	dg.ptr = cast(void*)a;
 	dg.funcptr = &A.foo;
 
 	if(status != 0){
--- a/run/return_06.d	Wed Feb 28 00:30:28 2007 +0000
+++ b/run/return_06.d	Sun Mar 04 11:01:08 2007 +0000
@@ -2,6 +2,10 @@
 // $Date$
 // $Author$
 
+// @author@	Thomas Kühne <thomas-dloop@kuehne.cn>
+// @uri@	http://d.puremagic.com/issues/show_bug.cgi?id=727
+// @desc@	[Issue 727] -inline: missing return in short function causes incorrect code generation
+
 // __DSTRESS_TORTURE_BLOCK__ -release
 
 module dstress.run.return_06;
@@ -13,7 +17,10 @@
 }
 
 int main(){
-	assert(test(0)==2);
+	if(2 != test(0)){
+		assert(0);
+	}
+
 	try{
 		test(1);
 	}catch{
--- a/run/s/string_postfix_07_B.d	Wed Feb 28 00:30:28 2007 +0000
+++ b/run/s/string_postfix_07_B.d	Sun Mar 04 11:01:08 2007 +0000
@@ -9,7 +9,7 @@
 module dstress.run.s.string_postfix_07_B;
 
 int main(){
-	char[6] cstr = "1234"c;
+	char[4] cstr = "1234"c;
 	auto a = cast(dchar[1])(cstr);
 	auto b = cast(dchar[1])("1234"c);
 
--- a/run/struct_12.d	Wed Feb 28 00:30:28 2007 +0000
+++ b/run/struct_12.d	Sun Mar 04 11:01:08 2007 +0000
@@ -28,17 +28,3 @@
 	return 0;
 }
 
-
-
-
-
-
-
-
-
-
-
-
-
-
-
--- a/run/t/template_32_A.d	Wed Feb 28 00:30:28 2007 +0000
+++ b/run/t/template_32_A.d	Sun Mar 04 11:01:08 2007 +0000
@@ -5,6 +5,7 @@
 // @author@	Dave <Dave_member@pathlink.com>
 // @date@	2006-03-18
 // @uri@	news:dvgq34$22hv$1@digitaldaemon.com
+// @uri@	http://d.puremagic.com/issues/show_bug.cgi?id=487
 
 module dstress.run.t.template_32_A;
 
--- a/run/t/template_32_B.d	Wed Feb 28 00:30:28 2007 +0000
+++ b/run/t/template_32_B.d	Sun Mar 04 11:01:08 2007 +0000
@@ -5,6 +5,7 @@
 // @author@	Dave <Dave_member@pathlink.com>
 // @date@	2006-03-18
 // @uri@	news:dvgq34$22hv$1@digitaldaemon.com
+// @uri@	http://d.puremagic.com/issues/show_bug.cgi?id=487
 
 module dstress.run.t.template_32_B;
 
--- a/run/t/template_32_C.d	Wed Feb 28 00:30:28 2007 +0000
+++ b/run/t/template_32_C.d	Sun Mar 04 11:01:08 2007 +0000
@@ -5,6 +5,7 @@
 // @author@	Dave <Dave_member@pathlink.com>
 // @date@	2006-03-18
 // @uri@	news:dvgq34$22hv$1@digitaldaemon.com
+// @uri@	http://d.puremagic.com/issues/show_bug.cgi?id=487
 
 module dstress.run.t.template_32_C;
 
--- a/run/t/template_32_D.d	Wed Feb 28 00:30:28 2007 +0000
+++ b/run/t/template_32_D.d	Sun Mar 04 11:01:08 2007 +0000
@@ -5,6 +5,7 @@
 // @author@	Dave <Dave_member@pathlink.com>
 // @date@	2006-03-18
 // @uri@	news:dvgq34$22hv$1@digitaldaemon.com
+// @uri@	http://d.puremagic.com/issues/show_bug.cgi?id=487
 
 module dstress.run.t.template_32_D;
 
--- a/run/t/template_32_E.d	Wed Feb 28 00:30:28 2007 +0000
+++ b/run/t/template_32_E.d	Sun Mar 04 11:01:08 2007 +0000
@@ -5,6 +5,7 @@
 // @author@	Dave <Dave_member@pathlink.com>
 // @date@	2006-03-18
 // @uri@	news:dvgq34$22hv$1@digitaldaemon.com
+// @uri@	http://d.puremagic.com/issues/show_bug.cgi?id=487
 
 module dstress.run.t.template_32_E;
 
--- a/run/t/template_32_F.d	Wed Feb 28 00:30:28 2007 +0000
+++ b/run/t/template_32_F.d	Sun Mar 04 11:01:08 2007 +0000
@@ -5,6 +5,7 @@
 // @author@	Dave <Dave_member@pathlink.com>
 // @date@	2006-03-18
 // @uri@	news:dvgq34$22hv$1@digitaldaemon.com
+// @uri@	http://d.puremagic.com/issues/show_bug.cgi?id=487
 
 module dstress.run.t.template_32_F;
 
--- a/run/t/template_32_G.d	Wed Feb 28 00:30:28 2007 +0000
+++ b/run/t/template_32_G.d	Sun Mar 04 11:01:08 2007 +0000
@@ -5,6 +5,7 @@
 // @author@	Dave <Dave_member@pathlink.com>
 // @date@	2006-03-18
 // @uri@	news:dvgq34$22hv$1@digitaldaemon.com
+// @uri@	http://d.puremagic.com/issues/show_bug.cgi?id=487
 
 module dstress.run.t.template_32_G;
 
--- a/run/t/template_32_H.d	Wed Feb 28 00:30:28 2007 +0000
+++ b/run/t/template_32_H.d	Sun Mar 04 11:01:08 2007 +0000
@@ -5,6 +5,7 @@
 // @author@	Dave <Dave_member@pathlink.com>
 // @date@	2006-03-18
 // @uri@	news:dvgq34$22hv$1@digitaldaemon.com
+// @uri@	http://d.puremagic.com/issues/show_bug.cgi?id=487
 
 module dstress.run.t.template_32_H;
 
--- a/run/t/template_32_I.d	Wed Feb 28 00:30:28 2007 +0000
+++ b/run/t/template_32_I.d	Sun Mar 04 11:01:08 2007 +0000
@@ -5,6 +5,7 @@
 // @author@	Dave <Dave_member@pathlink.com>
 // @date@	2006-03-18
 // @uri@	news:dvgq34$22hv$1@digitaldaemon.com
+// @uri@	http://d.puremagic.com/issues/show_bug.cgi?id=487
 
 module dstress.run.t.template_32_I;
 
--- a/run/t/template_32_J.d	Wed Feb 28 00:30:28 2007 +0000
+++ b/run/t/template_32_J.d	Sun Mar 04 11:01:08 2007 +0000
@@ -5,6 +5,7 @@
 // @author@	Dave <Dave_member@pathlink.com>
 // @date@	2006-03-18
 // @uri@	news:dvgq34$22hv$1@digitaldaemon.com
+// @uri@	http://d.puremagic.com/issues/show_bug.cgi?id=487
 
 module dstress.run.t.template_32_J;
 
--- a/run/t/template_32_K.d	Wed Feb 28 00:30:28 2007 +0000
+++ b/run/t/template_32_K.d	Sun Mar 04 11:01:08 2007 +0000
@@ -5,6 +5,7 @@
 // @author@	Dave <Dave_member@pathlink.com>
 // @date@	2006-03-18
 // @uri@	news:dvgq34$22hv$1@digitaldaemon.com
+// @uri@	http://d.puremagic.com/issues/show_bug.cgi?id=487
 
 module dstress.run.t.template_32_K;
 
--- a/run/t/template_32_L.d	Wed Feb 28 00:30:28 2007 +0000
+++ b/run/t/template_32_L.d	Sun Mar 04 11:01:08 2007 +0000
@@ -5,6 +5,7 @@
 // @author@	Dave <Dave_member@pathlink.com>
 // @date@	2006-03-18
 // @uri@	news:dvgq34$22hv$1@digitaldaemon.com
+// @uri@	http://d.puremagic.com/issues/show_bug.cgi?id=487
 
 module dstress.run.t.template_32_L;
 
--- a/run/t/template_32_M.d	Wed Feb 28 00:30:28 2007 +0000
+++ b/run/t/template_32_M.d	Sun Mar 04 11:01:08 2007 +0000
@@ -5,6 +5,7 @@
 // @author@	Dave <Dave_member@pathlink.com>
 // @date@	2006-03-18
 // @uri@	news:dvgq34$22hv$1@digitaldaemon.com
+// @uri@	http://d.puremagic.com/issues/show_bug.cgi?id=487
 
 module dstress.run.t.template_32_M;
 
--- a/run/t/template_32_N.d	Wed Feb 28 00:30:28 2007 +0000
+++ b/run/t/template_32_N.d	Sun Mar 04 11:01:08 2007 +0000
@@ -5,6 +5,7 @@
 // @author@	Dave <Dave_member@pathlink.com>
 // @date@	2006-03-18
 // @uri@	news:dvgq34$22hv$1@digitaldaemon.com
+// @uri@	http://d.puremagic.com/issues/show_bug.cgi?id=487
 
 module dstress.run.t.template_32_N;
 
--- a/run/t/template_32_O.d	Wed Feb 28 00:30:28 2007 +0000
+++ b/run/t/template_32_O.d	Sun Mar 04 11:01:08 2007 +0000
@@ -5,6 +5,7 @@
 // @author@	Dave <Dave_member@pathlink.com>
 // @date@	2006-03-18
 // @uri@	news:dvgq34$22hv$1@digitaldaemon.com
+// @uri@	http://d.puremagic.com/issues/show_bug.cgi?id=487
 
 module dstress.run.t.template_32_O;
 
--- a/run/t/template_32_P.d	Wed Feb 28 00:30:28 2007 +0000
+++ b/run/t/template_32_P.d	Sun Mar 04 11:01:08 2007 +0000
@@ -5,6 +5,7 @@
 // @author@	Dave <Dave_member@pathlink.com>
 // @date@	2006-03-18
 // @uri@	news:dvgq34$22hv$1@digitaldaemon.com
+// @uri@	http://d.puremagic.com/issues/show_bug.cgi?id=487
 
 module dstress.run.t.template_32_P;
 
--- a/run/t/template_32_Q.d	Wed Feb 28 00:30:28 2007 +0000
+++ b/run/t/template_32_Q.d	Sun Mar 04 11:01:08 2007 +0000
@@ -5,6 +5,7 @@
 // @author@	Dave <Dave_member@pathlink.com>
 // @date@	2006-03-18
 // @uri@	news:dvgq34$22hv$1@digitaldaemon.com
+// @uri@	http://d.puremagic.com/issues/show_bug.cgi?id=487
 
 module dstress.run.t.template_32_Q;
 
--- a/run/t/template_32_R.d	Wed Feb 28 00:30:28 2007 +0000
+++ b/run/t/template_32_R.d	Sun Mar 04 11:01:08 2007 +0000
@@ -5,6 +5,7 @@
 // @author@	Dave <Dave_member@pathlink.com>
 // @date@	2006-03-18
 // @uri@	news:dvgq34$22hv$1@digitaldaemon.com
+// @uri@	http://d.puremagic.com/issues/show_bug.cgi?id=487
 
 module dstress.run.t.template_32_R;
 
--- a/run/t/template_32_S.d	Wed Feb 28 00:30:28 2007 +0000
+++ b/run/t/template_32_S.d	Sun Mar 04 11:01:08 2007 +0000
@@ -5,6 +5,7 @@
 // @author@	Dave <Dave_member@pathlink.com>
 // @date@	2006-03-18
 // @uri@	news:dvgq34$22hv$1@digitaldaemon.com
+// @uri@	http://d.puremagic.com/issues/show_bug.cgi?id=487
 
 module dstress.run.t.template_32_S;
 
--- a/run/t/template_32_T.d	Wed Feb 28 00:30:28 2007 +0000
+++ b/run/t/template_32_T.d	Sun Mar 04 11:01:08 2007 +0000
@@ -5,6 +5,7 @@
 // @author@	Dave <Dave_member@pathlink.com>
 // @date@	2006-03-18
 // @uri@	news:dvgq34$22hv$1@digitaldaemon.com
+// @uri@	http://d.puremagic.com/issues/show_bug.cgi?id=487
 
 module dstress.run.t.template_32_T;
 
--- a/run/t/template_32_U.d	Wed Feb 28 00:30:28 2007 +0000
+++ b/run/t/template_32_U.d	Sun Mar 04 11:01:08 2007 +0000
@@ -5,6 +5,7 @@
 // @author@	Dave <Dave_member@pathlink.com>
 // @date@	2006-03-18
 // @uri@	news:dvgq34$22hv$1@digitaldaemon.com
+// @uri@	http://d.puremagic.com/issues/show_bug.cgi?id=487
 
 module dstress.run.t.template_32_U;