jacob-carlborg/dstep

Missing import

trikko opened this issue · 2 comments

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;

I didn't see this one:
#34

... but I found a way to recreate it with a simple case!

... but I found a way to recreate it with a simple case!

That's great.