We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The following program fails to link. ``` import core.stdc.wchar_; int main() { wchar_t[10] a = void; wchar_t[10] b = void; wmemmove(a.ptr, b.ptr, 10); return 0; } ``` compiled with: dmd test.d -m64 -mscrtlib=msvcrt The equivalent C program succeds. ``` #include <wchar.h> int main() { wchar_t a[10]; wchar_t b[10]; wmemmove(a,b,10); return 0; } ``` compiled with: cl test.c /MD
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Suleyman Sahmi (سليمان السهمي) reported this on 2019-12-19T03:08:50Z
Transferred from https://issues.dlang.org/show_bug.cgi?id=20456
Description
The text was updated successfully, but these errors were encountered: