comparison compile/m/mixin_29_E.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
comparison
equal deleted inserted replaced
1414:aaf99ec76365 1415:088bb4a67d95
1 // $HeadURL$
2 // $Date$
3 // $Author$
4
5 // @author@ Bob W <nospam@aol.com>
6 // @date@ 2007-01-27
7 // @uri@ http://www.digitalmars.com/webnews/newsgroups.php?search_txt=&group=digitalmars.D.announce&article_id=6983
8 // @desc@ Re: DMD 1.004 release
9
10 module dstress.compile.m.mixin_29_E;
11
12 template Mix() {
13 int i;
14 }
15
16 class Z {
17 struct {
18 mixin Mix!();
19 }
20 }