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
On current ~master
~master
C code:
static struct { const char *name; } http_strerror_tab[] = { { "CB_message_begin" }, { "CB_url" }, { "CB_header_field" } };
Will be translated into D code:
extern(C) { extern __gshared _Anonymous_0[3] http_strerror_tab; }
Compiler says on this module:
$ ldc2 -c test2.d test2.d(56): Error: undefined identifier `_Anonymous_0`
The text was updated successfully, but these errors were encountered:
No branches or pull requests
On current
~master
C code:
Will be translated into D code:
Compiler says on this module:
The text was updated successfully, but these errors were encountered: