annotate nocompile/t/template_25_A.d @ 1489:b8c0195059d9

changed nntp: URLs to http: URLs
author thomask
date Mon, 09 Apr 2007 13:47:01 +0000
parents 7ff5fd560b1d
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
801
7ff5fd560b1d Sean Kelly <sean@f4.ca>
thomask
parents:
diff changeset
1 // $HeadURL$
7ff5fd560b1d Sean Kelly <sean@f4.ca>
thomask
parents:
diff changeset
2 // $Date$
7ff5fd560b1d Sean Kelly <sean@f4.ca>
thomask
parents:
diff changeset
3 // $Author$
7ff5fd560b1d Sean Kelly <sean@f4.ca>
thomask
parents:
diff changeset
4
7ff5fd560b1d Sean Kelly <sean@f4.ca>
thomask
parents:
diff changeset
5 // @author@ Sean Kelly <sean@f4.ca>
7ff5fd560b1d Sean Kelly <sean@f4.ca>
thomask
parents:
diff changeset
6 // @date@ 2006-01-24
1489
b8c0195059d9 changed nntp: URLs to http: URLs
thomask
parents: 801
diff changeset
7 // @uri@ http://www.digitalmars.com/pnews/read.php?server=news.digitalmars.com&group=digitalmars.D.bugs&artnum=6068
801
7ff5fd560b1d Sean Kelly <sean@f4.ca>
thomask
parents:
diff changeset
8
7ff5fd560b1d Sean Kelly <sean@f4.ca>
thomask
parents:
diff changeset
9 // __DSTRESS_ELINE__ 18
7ff5fd560b1d Sean Kelly <sean@f4.ca>
thomask
parents:
diff changeset
10
7ff5fd560b1d Sean Kelly <sean@f4.ca>
thomask
parents:
diff changeset
11 module dstress.nocompile.t.template_25_A;
7ff5fd560b1d Sean Kelly <sean@f4.ca>
thomask
parents:
diff changeset
12
7ff5fd560b1d Sean Kelly <sean@f4.ca>
thomask
parents:
diff changeset
13 template fn( T ) {
7ff5fd560b1d Sean Kelly <sean@f4.ca>
thomask
parents:
diff changeset
14 void fn() {
7ff5fd560b1d Sean Kelly <sean@f4.ca>
thomask
parents:
diff changeset
15 }
7ff5fd560b1d Sean Kelly <sean@f4.ca>
thomask
parents:
diff changeset
16 }
7ff5fd560b1d Sean Kelly <sean@f4.ca>
thomask
parents:
diff changeset
17
7ff5fd560b1d Sean Kelly <sean@f4.ca>
thomask
parents:
diff changeset
18 template fn( T ) {
7ff5fd560b1d Sean Kelly <sean@f4.ca>
thomask
parents:
diff changeset
19 void fn( T val ) {
7ff5fd560b1d Sean Kelly <sean@f4.ca>
thomask
parents:
diff changeset
20 }
7ff5fd560b1d Sean Kelly <sean@f4.ca>
thomask
parents:
diff changeset
21 }
7ff5fd560b1d Sean Kelly <sean@f4.ca>
thomask
parents:
diff changeset
22
7ff5fd560b1d Sean Kelly <sean@f4.ca>
thomask
parents:
diff changeset
23 void main() {
7ff5fd560b1d Sean Kelly <sean@f4.ca>
thomask
parents:
diff changeset
24 mixin fn!(int);
7ff5fd560b1d Sean Kelly <sean@f4.ca>
thomask
parents:
diff changeset
25 }
7ff5fd560b1d Sean Kelly <sean@f4.ca>
thomask
parents:
diff changeset
26