changeset 558:f2a7a3d08d2a

Internal error: e2ir.c 488 (char 00914B24) (0x811ad08) Regan Heath <regan@netwin.co.nz> 2005-05-26 news:opsrb0xvou23k2f5@nrage.netwin.co.nz
author thomask
date Wed, 01 Jun 2005 12:25:13 +0000
parents 1c17ba0ad3cd
children 7c19d9ec9069
files nocompile/o/opCat_07_A.d nocompile/o/opCat_07_B.d
diffstat 2 files changed, 40 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/nocompile/o/opCat_07_A.d	Wed Jun 01 12:25:13 2005 +0000
@@ -0,0 +1,21 @@
+// $HeadURL$
+// $Date$
+// $Author$
+
+// @author@	Regan Heath <regan@netwin.co.nz>
+// @date@	2005-05-26
+// @uri@	news:opsrb0xvou23k2f5@nrage.netwin.co.nz
+// @desc@	Internal error: e2ir.c 488 (char 00914B24)  (0x811ad08)
+
+// __DSTRESS_ELINE__ 19
+
+module dstress.nocompile.o.opCat_07_A;
+
+void foo(char[] s){
+}
+
+int main(){
+	char c = '?';
+	foo("is this it"~c~" yep!");
+	return 0;
+}
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/nocompile/o/opCat_07_B.d	Wed Jun 01 12:25:13 2005 +0000
@@ -0,0 +1,19 @@
+// $HeadURL$
+// $Date$
+// $Author$
+
+// @author@	Regan Heath <regan@netwin.co.nz>
+// @date@	2005-05-26
+// @uri@	news:opsrb0xvou23k2f5@nrage.netwin.co.nz
+// @desc@	Internal error: e2ir.c 488 (char 00914B24)  (0x811ad08)
+
+// __DSTRESS_ELINE__ 17
+
+module dstress.nocompile.o.opCat_07_B;
+
+int main(){
+	char c = '?';
+	char[] s;
+	s = s ~ c ~ s;
+	return 0;
+}