annotate nocompile/template_13.d @ 1384:d3a3e0c251d8

nntp: -> http:
author thomask
date Sun, 04 Mar 2007 13:10:07 +0000
parents 52c9e86b6486
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
308
1dcc48f613dc template argument / alias
thomask
parents:
diff changeset
1 // $HeadURL$
1dcc48f613dc template argument / alias
thomask
parents:
diff changeset
2 // $Date$
1dcc48f613dc template argument / alias
thomask
parents:
diff changeset
3 // $Author$
1dcc48f613dc template argument / alias
thomask
parents:
diff changeset
4
1dcc48f613dc template argument / alias
thomask
parents:
diff changeset
5 // @author@ David Medlock <amedlock@nospam.org>
1dcc48f613dc template argument / alias
thomask
parents:
diff changeset
6 // @date@ 2005-03-09
1dcc48f613dc template argument / alias
thomask
parents:
diff changeset
7 // @uri@ news:d0nmd8$427$1@digitaldaemon.com
1384
d3a3e0c251d8 nntp: -> http:
thomask
parents: 1383
diff changeset
8 // @uri@ http://www.digitalmars.com/pnews/read.php?server=news.digitalmars.com&group=digitalmars.D.bugs&artnum=3129
308
1dcc48f613dc template argument / alias
thomask
parents:
diff changeset
9
1dcc48f613dc template argument / alias
thomask
parents:
diff changeset
10 module dstress.nocompile.template_13;
1dcc48f613dc template argument / alias
thomask
parents:
diff changeset
11
1dcc48f613dc template argument / alias
thomask
parents:
diff changeset
12 template Template( alias T1 ){
1dcc48f613dc template argument / alias
thomask
parents:
diff changeset
13 }
1dcc48f613dc template argument / alias
thomask
parents:
diff changeset
14
1dcc48f613dc template argument / alias
thomask
parents:
diff changeset
15 alias Template!( int ) Int;
1dcc48f613dc template argument / alias
thomask
parents:
diff changeset
16
1dcc48f613dc template argument / alias
thomask
parents:
diff changeset
17 alias Template!( Template!(Int) ) Bug;