annotate compile/m/mixin_29_C.d @ 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
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
1415
088bb4a67d95 Re: DMD 1.004 release
thomask
parents:
diff changeset
1 // $HeadURL$
088bb4a67d95 Re: DMD 1.004 release
thomask
parents:
diff changeset
2 // $Date$
088bb4a67d95 Re: DMD 1.004 release
thomask
parents:
diff changeset
3 // $Author$
088bb4a67d95 Re: DMD 1.004 release
thomask
parents:
diff changeset
4
088bb4a67d95 Re: DMD 1.004 release
thomask
parents:
diff changeset
5 // @author@ Bob W <nospam@aol.com>
088bb4a67d95 Re: DMD 1.004 release
thomask
parents:
diff changeset
6 // @date@ 2007-01-27
088bb4a67d95 Re: DMD 1.004 release
thomask
parents:
diff changeset
7 // @uri@ http://www.digitalmars.com/webnews/newsgroups.php?search_txt=&group=digitalmars.D.announce&article_id=6983
088bb4a67d95 Re: DMD 1.004 release
thomask
parents:
diff changeset
8 // @desc@ Re: DMD 1.004 release
088bb4a67d95 Re: DMD 1.004 release
thomask
parents:
diff changeset
9
088bb4a67d95 Re: DMD 1.004 release
thomask
parents:
diff changeset
10 module dstress.compile.m.mixin_29_C;
088bb4a67d95 Re: DMD 1.004 release
thomask
parents:
diff changeset
11
088bb4a67d95 Re: DMD 1.004 release
thomask
parents:
diff changeset
12 template Mix() {
088bb4a67d95 Re: DMD 1.004 release
thomask
parents:
diff changeset
13 int i;
088bb4a67d95 Re: DMD 1.004 release
thomask
parents:
diff changeset
14 }
088bb4a67d95 Re: DMD 1.004 release
thomask
parents:
diff changeset
15
088bb4a67d95 Re: DMD 1.004 release
thomask
parents:
diff changeset
16 union Z {
088bb4a67d95 Re: DMD 1.004 release
thomask
parents:
diff changeset
17 struct {
088bb4a67d95 Re: DMD 1.004 release
thomask
parents:
diff changeset
18 mixin Mix!();
088bb4a67d95 Re: DMD 1.004 release
thomask
parents:
diff changeset
19 }
088bb4a67d95 Re: DMD 1.004 release
thomask
parents:
diff changeset
20 }