https://issues.dlang.org/show_bug.cgi?id=19841
--- Comment #4 from [email protected] --- (In reply to Atila Neves from comment #2) > Ah. In that case it's the copy ctor that causes this to happen: Yes, as it's no POD in C++-terms anymore, affecting the ABI. So in D, you can define a dummy postblit to make it a non-POD. IIRC, Microsoft is a lot stricter, and the mere existence of at least one ctor makes it a non-POD. --
