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

Walter Bright <[email protected]> changed:

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

--- Comment #4 from Walter Bright <[email protected]> ---
What's happening is that s.c is declaring struct Sfile. core.stdc.stdio is also
declaring a struct Sfile, but a *different* one. Declarations in D files are
not merged with declarations from C files.

One possible solution is for core.stdc.stdio to declare Sfile using ImportC.

--

Reply via email to