On 5/12/16 9:20 AM, MGW wrote:
> Windows 7 32bit
> -----------------------
> import std.stdio;
> import std.conv;
>
> class CFormaMain {
> ~this() {
> char[] zz = [ 'A', 'B', 'C' ];
This allocates. Allocations are not allowed in GC collection cycle.
-Steve