changeset 204:fcaf1782c71d

label deflation bug Tyro <ridimz_at@yahoo.dot.com> 2004-12-18 news:cq2g95$2n45$1@digitaldaemon.com nntp://digitalmars.com/digitalmars.D.bugs/2581
author thomask
date Sun, 19 Dec 2004 11:01:01 +0000
parents 85ed61918ae4
children e3c5b1e6f4a3
files run/label_01.d run/label_02.d run/label_03.d
diffstat 3 files changed, 49 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/run/label_01.d	Sun Dec 19 11:01:01 2004 +0000
@@ -0,0 +1,17 @@
+// $HeadURL$
+// $Date$
+// $Author$
+
+// @author@	Tyro <ridimz_at@yahoo.dot.com>
+// @date@	2004-12-18
+// @uri@	news:cq2g95$2n45$1@digitaldaemon.com
+// @url@	nntp://digitalmars.com/digitalmars.D.bugs/2581
+
+module dstress.run.label_01;
+
+int main(){
+label:	{
+		return 0;
+	}
+}
+
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/run/label_02.d	Sun Dec 19 11:01:01 2004 +0000
@@ -0,0 +1,16 @@
+// $HeadURL$
+// $Date$
+// $Author$
+
+// @author@	Tyro <ridimz_at@yahoo.dot.com>
+// @date@	2004-12-18
+// @uri@	news:cq2g95$2n45$1@digitaldaemon.com
+// @url@	nntp://digitalmars.com/digitalmars.D.bugs/2581
+
+module dstress.run.label_02;
+
+int main(){
+label:	{}
+	return 0;
+}
+
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/run/label_03.d	Sun Dec 19 11:01:01 2004 +0000
@@ -0,0 +1,16 @@
+// $HeadURL$
+// $Date$
+// $Author$
+
+// @author@	Tyro <ridimz_at@yahoo.dot.com>
+// @date@	2004-12-18
+// @uri@	news:cq2g95$2n45$1@digitaldaemon.com
+// @url@	nntp://digitalmars.com/digitalmars.D.bugs/2581
+
+module dstress.run.label_03;
+
+int main(){
+label:;
+	return 0;
+}
+