diff nocompile/template_13.d @ 308:1dcc48f613dc

template argument / alias David Medlock <amedlock@nospam.org> 2005-03-09 news:d0nmd8$427$1@digitaldaemon.com nntp://news.digitalmars.com/digitalmars.D.bugs/3129
author thomask
date Mon, 14 Mar 2005 07:07:41 +0000
parents
children 52c9e86b6486
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/nocompile/template_13.d	Mon Mar 14 07:07:41 2005 +0000
@@ -0,0 +1,17 @@
+// $HeadURL$
+// $Date$
+// $Author$
+
+// @author@	David Medlock <amedlock@nospam.org>
+// @date@	2005-03-09
+// @uri@	news:d0nmd8$427$1@digitaldaemon.com
+// @url@	nntp://news.digitalmars.com/digitalmars.D.bugs/3129
+
+module dstress.nocompile.template_13;
+
+template Template( alias T1 ){
+}
+
+alias Template!( int ) Int;
+
+alias Template!( Template!(Int) ) Bug;
\ No newline at end of file