Missing import
trikko opened this issue · 2 comments
trikko commented
test.h:
typedef __builtin_va_list __gnuc_va_list;
typedef __gnuc_va_list va_list;
test.d:
extern (C):
alias __gnuc_va_list = __va_list_tag[1];
alias va_list = __va_list_tag[1];
test.d
is missing import core.stdc.stdarg;
trikko commented
I didn't see this one:
#34
... but I found a way to recreate it with a simple case!
jacob-carlborg commented
... but I found a way to recreate it with a simple case!
That's great.