annotate compile/template_class_08.d @ 1630:d0efa3ae5522 default tip

run/mini/naked_asm5: New x86_64 ABI passes the arguments in reverse order.
author David Nadlinger <code@klickverbot.at>
date Sat, 23 Apr 2011 22:57:32 +0200
parents 62c9b99c3a16
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
1385
62c9b99c3a16 meta cleanup
thomask
parents: 1384
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.compile.template_class_08;
1dcc48f613dc template argument / alias
thomask
parents:
diff changeset
11
1dcc48f613dc template argument / alias
thomask
parents:
diff changeset
12 class Template( 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;