changeset 211:8695916b11c3

e2ir.c 229 h3r3tic <foo@bar.baz> 2004-12-24 news:cqi3v3$r2o$1@digitaldaemon.com nntp://digitalmars.com/digitalmars.D.bugs/2601
author thomask
date Sun, 26 Dec 2004 16:38:16 +0000
parents 54c661db561b
children a1b5ea8ffe68
files run/bug_e2ir_299_A.d run/bug_e2ir_299_B.d
diffstat 2 files changed, 34 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/run/bug_e2ir_299_A.d	Sun Dec 26 16:38:16 2004 +0000
@@ -0,0 +1,18 @@
+// $HeadURL$
+// $Date$
+// $Author$
+
+// @author@	h3r3tic <foo@bar.baz>
+// @date@	2004-12-24
+// @uri@	news:cqi3v3$r2o$1@digitaldaemon.com
+// @url@	nntp://digitalmars.com/digitalmars.D.bugs/2601
+
+module dstress.run.bug_e2ir_299_A;
+
+int main(){
+	void foo() {}
+	void function() bar = function void() {
+		foo();
+	};
+	return 0;
+}
\ No newline at end of file
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/run/bug_e2ir_299_B.d	Sun Dec 26 16:38:16 2004 +0000
@@ -0,0 +1,16 @@
+// $HeadURL$
+// $Date$
+// $Author$
+
+// @author@	h3r3tic <foo@bar.baz>
+// @date@	2004-12-24
+// @uri@	news:cqi3v3$r2o$1@digitaldaemon.com
+// @url@	nntp://digitalmars.com/digitalmars.D.bugs/2601
+
+module dstress.run.bug_e2ir_299_B;
+
+int main(){
+	void foo() {}
+	function void() { foo(); };
+	return 0;
+}
\ No newline at end of file