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

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 cpctors vs. structs without:

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

Prints:
CopyConstructor = ()
NoCopyConstructor = (int)

--

Reply via email to