# HG changeset patch # User thomask # Date 1173611218 0 # Node ID 088bb4a67d95269fc798699723bb45083bf2badc # Parent aaf99ec76365b3fdd64f545b8797b0651572333f Re: DMD 1.004 release Bob W 2007-01-27 http://www.digitalmars.com/webnews/newsgroups.php?search_txt=&group=digitalmars.D.announce&article_id=6983 diff -r aaf99ec76365 -r 088bb4a67d95 compile/m/mixin_29_A.d --- /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 +// @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!(); + } +} diff -r aaf99ec76365 -r 088bb4a67d95 compile/m/mixin_29_B.d --- /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 +// @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!(); + } +} diff -r aaf99ec76365 -r 088bb4a67d95 compile/m/mixin_29_C.d --- /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 +// @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!(); + } +} diff -r aaf99ec76365 -r 088bb4a67d95 compile/m/mixin_29_D.d --- /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 +// @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!(); + } +} diff -r aaf99ec76365 -r 088bb4a67d95 compile/m/mixin_29_E.d --- /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 +// @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!(); + } +} diff -r aaf99ec76365 -r 088bb4a67d95 compile/m/mixin_29_F.d --- /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 +// @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!(); + } +}