August 04, 2021
https://issues.dlang.org/show_bug.cgi?id=20434

Steven Schveighoffer <schveiguy@gmail.com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |schveiguy@gmail.com

--- Comment #1 from Steven Schveighoffer <schveiguy@gmail.com> ---
> 			int[] trash = uninitializedArray!(int[])(i * 1024*1024);

Should this be `size * 1024*1024` instead? I would expect doing 1000 allocations of +1MB each iteration to get slower over time.

--
August 14, 2021
https://issues.dlang.org/show_bug.cgi?id=20434

Gregor Mückl <gregormueckl@gmx.de> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|NEW                         |RESOLVED
         Resolution|---                         |INVALID

--- Comment #2 from Gregor Mückl <gregormueckl@gmx.de> ---
Steven,

You are right. The example I posted was wrong. This bug is just plain invalid. Sorry for wasting time with it.

--