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

Walter Bright <[email protected]> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |[email protected]

--- Comment #1 from Walter Bright <[email protected]> ---
Here's the repro case from the attachment:

struct foo
{
  char[] buf;

  this(size_t size)
  {
    buf = new char[size];
  }

  ~this()
  {
    buf = null;
  }
}

struct bar
{
  foo f;
}

shared bar b;

--

Reply via email to