annotate nocompile/a/assert_15_B.d @ 1319:81222734adf3

sed'ed replacement of new:...http.d.puremagic.co... with http://d.puremagic.com/issues/show_bug.cgi?...
author thomask
date Sun, 31 Dec 2006 19:58:06 +0000
parents 165fd0587328
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
1020
165fd0587328 static assert fails with recursive templates
thomask
parents:
diff changeset
1 // $HeadURL$
165fd0587328 static assert fails with recursive templates
thomask
parents:
diff changeset
2 // $Date$
165fd0587328 static assert fails with recursive templates
thomask
parents:
diff changeset
3 // $Author$
165fd0587328 static assert fails with recursive templates
thomask
parents:
diff changeset
4
165fd0587328 static assert fails with recursive templates
thomask
parents:
diff changeset
5 // @author@ <shro8822@uidaho.edu>
165fd0587328 static assert fails with recursive templates
thomask
parents:
diff changeset
6 // @date@ 2006-05-23
1319
81222734adf3 sed'ed replacement of new:...http.d.puremagic.co... with http://d.puremagic.com/issues/show_bug.cgi?...
thomask
parents: 1020
diff changeset
7 // @uri@ http://d.puremagic.com/issues/show_bug.cgi?id=152
1020
165fd0587328 static assert fails with recursive templates
thomask
parents:
diff changeset
8
165fd0587328 static assert fails with recursive templates
thomask
parents:
diff changeset
9 // __DSTRESS_ELINE__ 14
165fd0587328 static assert fails with recursive templates
thomask
parents:
diff changeset
10
165fd0587328 static assert fails with recursive templates
thomask
parents:
diff changeset
11 module dstress.nocompile.a.assert_15_B;
165fd0587328 static assert fails with recursive templates
thomask
parents:
diff changeset
12
165fd0587328 static assert fails with recursive templates
thomask
parents:
diff changeset
13 template T(){
165fd0587328 static assert fails with recursive templates
thomask
parents:
diff changeset
14 static assert(0);
165fd0587328 static assert fails with recursive templates
thomask
parents:
diff changeset
15 const int T = T!();
165fd0587328 static assert fails with recursive templates
thomask
parents:
diff changeset
16 }
165fd0587328 static assert fails with recursive templates
thomask
parents:
diff changeset
17
165fd0587328 static assert fails with recursive templates
thomask
parents:
diff changeset
18 const int x = T!();