On Wednesday, 5 September 2012 at 12:27:05 UTC, Benjamin Thaut
wrote:
> Then because they are const, TypeInfo_Const.toString() will be
> called:
>
> override string toString()
> {
> return cast(string) ("const(" ~ base.toString() ~ ")");
> }
>
> which allocates, due to array concardination.
Wow.