comparison nocompile/t/template_52_A.d @ 1283:91479703e22e

[Issue 710] New: compiler assertion failure w/ templates Dan <ddaglas@gmail.com> 2006-12-22 http://d.puremagic.com/issues/show_bug.cgi?id=710
author thomask
date Tue, 26 Dec 2006 14:21:23 +0000
parents
children
comparison
equal deleted inserted replaced
1282:75288b41b6c7 1283:91479703e22e
1 // $HeadURL$
2 // $Date$
3 // $Author$
4
5 // @author@ Dan <ddaglas@gmail.com>
6 // @date@ 2006-12-22
7 // @uri@ http://d.puremagic.com/issues/show_bug.cgi?id=710
8 // @desc@ [Issue 710] New: compiler assertion failure w/ templates
9
10 // __DSTRESS_ELINE__ 20
11
12 module dstress.nocompile.t.template_52_A;
13
14 static int i=0;
15
16 template NEXT(int idx){
17 const NEXT = idx;
18 }
19
20 ubyte HELO = NEXT!(i++);