mirror of
https://github.com/xomboverlord/ldc.git
synced 2026-01-13 03:13:13 +01:00
31 lines
333 B
D
31 lines
333 B
D
module tangotests.vararg4;
|
|
|
|
extern(C) int printf(char*, ...);
|
|
|
|
struct S
|
|
{
|
|
int i;
|
|
}
|
|
|
|
void func(...)
|
|
{
|
|
S* sp = cast(S*)_argptr;
|
|
assert(sp.i == 42);
|
|
}
|
|
|
|
void main()
|
|
{
|
|
printf("1st:\n");
|
|
{
|
|
S s = S(42);
|
|
func(s);
|
|
}
|
|
printf("ok\n");
|
|
|
|
printf("2nd:\n");
|
|
{
|
|
func(S(42));
|
|
}
|
|
printf("ok\n");
|
|
}
|