changeset 1057:d90888cdcaca

<deewiant@gmail.com> 2006-06-27 news:bug-228-3@http.d.puremagic.com/issues/
author thomask
date Thu, 29 Jun 2006 13:26:14 +0000
parents 135a2746dee3
children ac5e9884d08b
files nocompile/d/delegate_18_A.d nocompile/d/delegate_18_B.d nocompile/f/function_08_A.d nocompile/f/function_08_B.d
diffstat 4 files changed, 64 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/nocompile/d/delegate_18_A.d	Thu Jun 29 13:26:14 2006 +0000
@@ -0,0 +1,15 @@
+// $HedURL$
+// $Date$
+// $Author$
+
+// @author@	<deewiant@gmail.com>
+// @date@	2006-06-27
+// @uri@	news:bug-228-3@http.d.puremagic.com/issues/
+
+// __DSTRESS_ELINE__ 14
+
+module dstress.nocompile.d.delegate_18_A;
+
+void main(){
+	y = delegate(){};
+}
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/nocompile/d/delegate_18_B.d	Thu Jun 29 13:26:14 2006 +0000
@@ -0,0 +1,17 @@
+// $HedURL$
+// $Date$
+// $Author$
+
+// @author@	<deewiant@gmail.com>
+// @date@	2006-06-27
+// @uri@	news:bug-228-3@http.d.puremagic.com/issues/
+
+// __DSTRESS_ELINE__ 14
+
+module dstress.nocompile.d.delegate_18_B;
+
+void main(){
+	y = 2;
+
+	auto x = delegate(){};
+}
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/nocompile/f/function_08_A.d	Thu Jun 29 13:26:14 2006 +0000
@@ -0,0 +1,17 @@
+// $HedURL$
+// $Date$
+// $Author$
+
+// @author@	<deewiant@gmail.com>
+// @date@	2006-06-27
+// @uri@	news:bug-228-3@http.d.puremagic.com/issues/
+
+// __DSTRESS_ELINE__ 14
+
+module dstress.nocompile.f.function_08_A;
+
+void main(){
+	y = 2;
+	
+	auto x = function(){};
+}
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/nocompile/f/function_08_B.d	Thu Jun 29 13:26:14 2006 +0000
@@ -0,0 +1,15 @@
+// $HedURL$
+// $Date$
+// $Author$
+
+// @author@	<deewiant@gmail.com>
+// @date@	2006-06-27
+// @uri@	news:bug-228-3@http.d.puremagic.com/issues/
+
+// __DSTRESS_ELINE__ 14
+
+module dstress.nocompile.f.function_08_B;
+
+void main(){
+	y = function(){};
+}