[Issue 8295] Struct member destructor can not be called from shared struct instance
    via Digitalmars-d-bugs 
    digitalmars-d-bugs at puremagic.com
       
    Mon Jun 19 15:03:08 PDT 2017
    
    
  
https://issues.dlang.org/show_bug.cgi?id=8295
z.p.gaal.devel at gmail.com changed:
           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |z.p.gaal.devel at gmail.com
--- Comment #5 from z.p.gaal.devel at gmail.com ---
the same for this code too:
struct foo
{
    int a;
}
struct bar
{
    foo f;
    ~this()
    {
    }
}
shared bar b;
--
    
    
More information about the Digitalmars-d-bugs
mailing list