changeset 1415:088bb4a67d95

Re: DMD 1.004 release Bob W <nospam@aol.com> 2007-01-27 http://www.digitalmars.com/webnews/newsgroups.php?search_txt=&group=digitalmars.D.announce&article_id=6983
author thomask
date Sun, 11 Mar 2007 11:06:58 +0000
parents aaf99ec76365
children abcf8e538bac
files compile/m/mixin_29_A.d compile/m/mixin_29_B.d compile/m/mixin_29_C.d compile/m/mixin_29_D.d compile/m/mixin_29_E.d compile/m/mixin_29_F.d
diffstat 6 files changed, 120 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/compile/m/mixin_29_A.d	Sun Mar 11 11:06:58 2007 +0000
@@ -0,0 +1,20 @@
+// $HeadURL$
+// $Date$
+// $Author$
+
+// @author@	Bob W <nospam@aol.com>
+// @date@	2007-01-27
+// @uri@	http://www.digitalmars.com/webnews/newsgroups.php?search_txt=&group=digitalmars.D.announce&article_id=6983
+// @desc@	Re: DMD 1.004 release
+
+module dstress.compile.m.mixin_29_A;
+
+template Mix() {
+	int i;
+}
+
+struct Z {
+	union {
+		mixin Mix!();
+	}
+}
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/compile/m/mixin_29_B.d	Sun Mar 11 11:06:58 2007 +0000
@@ -0,0 +1,20 @@
+// $HeadURL$
+// $Date$
+// $Author$
+
+// @author@	Bob W <nospam@aol.com>
+// @date@	2007-01-27
+// @uri@	http://www.digitalmars.com/webnews/newsgroups.php?search_txt=&group=digitalmars.D.announce&article_id=6983
+// @desc@	Re: DMD 1.004 release
+
+module dstress.compile.m.mixin_29_B;
+
+template Mix() {
+	int i;
+}
+
+union Z {
+	union {
+		mixin Mix!();
+	}
+}
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/compile/m/mixin_29_C.d	Sun Mar 11 11:06:58 2007 +0000
@@ -0,0 +1,20 @@
+// $HeadURL$
+// $Date$
+// $Author$
+
+// @author@	Bob W <nospam@aol.com>
+// @date@	2007-01-27
+// @uri@	http://www.digitalmars.com/webnews/newsgroups.php?search_txt=&group=digitalmars.D.announce&article_id=6983
+// @desc@	Re: DMD 1.004 release
+
+module dstress.compile.m.mixin_29_C;
+
+template Mix() {
+	int i;
+}
+
+union Z {
+	struct {
+		mixin Mix!();
+	}
+}
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/compile/m/mixin_29_D.d	Sun Mar 11 11:06:58 2007 +0000
@@ -0,0 +1,20 @@
+// $HeadURL$
+// $Date$
+// $Author$
+
+// @author@	Bob W <nospam@aol.com>
+// @date@	2007-01-27
+// @uri@	http://www.digitalmars.com/webnews/newsgroups.php?search_txt=&group=digitalmars.D.announce&article_id=6983
+// @desc@	Re: DMD 1.004 release
+
+module dstress.compile.m.mixin_29_D;
+
+template Mix() {
+	int i;
+}
+
+struct Z {
+	struct {
+		mixin Mix!();
+	}
+}
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/compile/m/mixin_29_E.d	Sun Mar 11 11:06:58 2007 +0000
@@ -0,0 +1,20 @@
+// $HeadURL$
+// $Date$
+// $Author$
+
+// @author@	Bob W <nospam@aol.com>
+// @date@	2007-01-27
+// @uri@	http://www.digitalmars.com/webnews/newsgroups.php?search_txt=&group=digitalmars.D.announce&article_id=6983
+// @desc@	Re: DMD 1.004 release
+
+module dstress.compile.m.mixin_29_E;
+
+template Mix() {
+	int i;
+}
+
+class Z {
+	struct {
+		mixin Mix!();
+	}
+}
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/compile/m/mixin_29_F.d	Sun Mar 11 11:06:58 2007 +0000
@@ -0,0 +1,20 @@
+// $HeadURL$
+// $Date$
+// $Author$
+
+// @author@	Bob W <nospam@aol.com>
+// @date@	2007-01-27
+// @uri@	http://www.digitalmars.com/webnews/newsgroups.php?search_txt=&group=digitalmars.D.announce&article_id=6983
+// @desc@	Re: DMD 1.004 release
+
+module dstress.compile.m.mixin_29_F;
+
+template Mix() {
+	int i;
+}
+
+class Z {
+	union {
+		mixin Mix!();
+	}
+}