annotate nocompile/t/template_58_A2.d @ 1518:5b8f89bc1b52

fixed typo
author thomask
date Fri, 27 Apr 2007 17:21:55 +0000
parents
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
1518
5b8f89bc1b52 fixed typo
thomask
parents:
diff changeset
1 // $HeadURL$
5b8f89bc1b52 fixed typo
thomask
parents:
diff changeset
2 // $Date$
5b8f89bc1b52 fixed typo
thomask
parents:
diff changeset
3 // $Author$
5b8f89bc1b52 fixed typo
thomask
parents:
diff changeset
4
5b8f89bc1b52 fixed typo
thomask
parents:
diff changeset
5 // @author@ Frits van Bommel <fvbommel@wxs.nl>
5b8f89bc1b52 fixed typo
thomask
parents:
diff changeset
6 // @date@ 2007-01-24
5b8f89bc1b52 fixed typo
thomask
parents:
diff changeset
7 // @uri@ http://d.puremagic.com/issues/show_bug.cgi?id=884
5b8f89bc1b52 fixed typo
thomask
parents:
diff changeset
8 // @desc@ [Issue 884] Segfault in recursive template
5b8f89bc1b52 fixed typo
thomask
parents:
diff changeset
9
5b8f89bc1b52 fixed typo
thomask
parents:
diff changeset
10 module dstress.nocompile.t.template_58_A2;
5b8f89bc1b52 fixed typo
thomask
parents:
diff changeset
11
5b8f89bc1b52 fixed typo
thomask
parents:
diff changeset
12 template Inner(Ts...) {
5b8f89bc1b52 fixed typo
thomask
parents:
diff changeset
13 const Inner = .Inner!((Ts));
5b8f89bc1b52 fixed typo
thomask
parents:
diff changeset
14 }
5b8f89bc1b52 fixed typo
thomask
parents:
diff changeset
15
5b8f89bc1b52 fixed typo
thomask
parents:
diff changeset
16 auto x = Inner!();