annotate nocompile/mixin_04.d @ 1485:774e02c900da

changed nntp: URLs to http: URLs
author thomask
date Mon, 09 Apr 2007 12:03:23 +0000
parents 52c9e86b6486
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
207
d59b1bc64d25 mixin of templated struct
thomask
parents:
diff changeset
1 // $HeadURL$
d59b1bc64d25 mixin of templated struct
thomask
parents:
diff changeset
2 // $Date$
d59b1bc64d25 mixin of templated struct
thomask
parents:
diff changeset
3 // $Author$
d59b1bc64d25 mixin of templated struct
thomask
parents:
diff changeset
4
d59b1bc64d25 mixin of templated struct
thomask
parents:
diff changeset
5 // @author@ Russ Lewis <spamhole-2001-07-16@deming-os.org>
d59b1bc64d25 mixin of templated struct
thomask
parents:
diff changeset
6 // @date@ 2004-12-22
d59b1bc64d25 mixin of templated struct
thomask
parents:
diff changeset
7 // @uri@ news:cqcr0k$v56$1@digitaldaemon.com
1485
774e02c900da changed nntp: URLs to http: URLs
thomask
parents: 1383
diff changeset
8 // @uri@ http://www.digitalmars.com/pnews/read.php?server=news.digitalmars.com&group=digitalmars.D.bugs&artnum=2591
207
d59b1bc64d25 mixin of templated struct
thomask
parents:
diff changeset
9
374
f87ba6507260 added missing meta-data
thomask
parents: 207
diff changeset
10 // __DSTRESS_ELINE__ 20
f87ba6507260 added missing meta-data
thomask
parents: 207
diff changeset
11
207
d59b1bc64d25 mixin of templated struct
thomask
parents:
diff changeset
12 module dstress.nocompile.mixin_04;
d59b1bc64d25 mixin of templated struct
thomask
parents:
diff changeset
13
d59b1bc64d25 mixin of templated struct
thomask
parents:
diff changeset
14 struct Foo() {
d59b1bc64d25 mixin of templated struct
thomask
parents:
diff changeset
15 int var;
d59b1bc64d25 mixin of templated struct
thomask
parents:
diff changeset
16 }
d59b1bc64d25 mixin of templated struct
thomask
parents:
diff changeset
17
d59b1bc64d25 mixin of templated struct
thomask
parents:
diff changeset
18 struct Bar(T) {
d59b1bc64d25 mixin of templated struct
thomask
parents:
diff changeset
19 mixin Foo;
d59b1bc64d25 mixin of templated struct
thomask
parents:
diff changeset
20 alias Foo.var var;
d59b1bc64d25 mixin of templated struct
thomask
parents:
diff changeset
21 }