December 06, 2005
Short and sweet.
-------------
template dog(char [] sheep)
{
 const char [] dog = "daschund";
}

const char [] duck = dog!("bird"[1..3]);
-------------

December 10, 2005
Don Clugston schrieb am 2005-12-06:
> Short and sweet.
> -------------
> template dog(char [] sheep)
> {
>   const char [] dog = "daschund";
> }
>
> const char [] duck = dog!("bird"[1..3]);
> -------------

Added to DStress as http://dstress.kuehne.cn/run/b/bug_expression_525_A.d http://dstress.kuehne.cn/run/b/bug_expression_525_B.d http://dstress.kuehne.cn/run/b/bug_expression_525_C.d http://dstress.kuehne.cn/run/b/bug_expression_525_D.d http://dstress.kuehne.cn/run/b/bug_expression_525_E.d

Thomas