https://issues.dlang.org/show_bug.cgi?id=22365

[email protected] changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |[email protected]
                   |                            |rg
           Hardware|x86_64                      |All
                 OS|Windows                     |All

--- Comment #3 from [email protected] ---
Reduction:


alias DrawableRef = Ref!int;

class DrawableCache {
    DrawableRef _nullDrawable;

    this() {
        debug Log;
    }
}


struct Ref(T) {

    ~this() {
    }
}

Requires -preview=dtorfields with older compilers.

--

Reply via email to