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

Iain Buclaw <ibuc...@gdcproject.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |ibuc...@gdcproject.org

--- Comment #1 from Iain Buclaw <ibuc...@gdcproject.org> ---
I don't think this is a druntime bug.  The compiler sets __argTypes differently
for structs with postblits vs. structs without:

```
static if (is(T U == __argTypes))
    pragma(msg, T, " = ", U);
```

Prints:
Postblit = ()
NoPostblit = (int)

--

Reply via email to