comparison nocompile/t/templatde_58_B.d @ 1464:92ed738d5fad

[Issue 884] Segfault in recursive template Frits van Bommel <fvbommel@wxs.nl> 2007-01-24 http://d.puremagic.com/issues/show_bug.cgi?id=884
author thomask
date Thu, 05 Apr 2007 10:31:32 +0000
parents
children
comparison
equal deleted inserted replaced
1463:a88dcaf5c0d0 1464:92ed738d5fad
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_B;
11
12 template Inner(Ts...) {
13 const Inner = .Inner!(Ts);
14 }
15
16 auto x = Inner!();