comparison nocompile/t/template_58_C2.d @ 1518:5b8f89bc1b52

fixed typo
author thomask
date Fri, 27 Apr 2007 17:21:55 +0000
parents
children
comparison
equal deleted inserted replaced
1517:cf7719e0ef1b 1518:5b8f89bc1b52
1 // $HeadURL$
2 // $Date$
3 // $Author$
4
5 // @author@ Frits van Bommel <fvbommel@wxs.nl>
6 // @date@ 2007-01-24
7 // @uri@ http://d.puremagic.com/issues/show_bug.cgi?id=884
8 // @desc@ [Issue 884] Segfault in recursive template
9
10 module dstress.nocompile.t.template_58_C2;
11
12 template Inner(Ts...) {
13 const Inner = Inner!((Ts));
14 }
15
16 auto x = Inner!();