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

Iain Buclaw <[email protected]> changed:

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

--- Comment #1 from Iain Buclaw <[email protected]> ---
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