view tests/minicomplex/vararg2.d @ 1612:081c48283153

Merge DMD r278: bugzilla 370 Compiler stack overflow on recursive... bugzilla 370 Compiler stack overflow on recursive typeof in function declaration. --- dmd/expression.c | 1 + dmd/mtype.c | 7 +++++-- 2 files changed, 6 insertions(+), 2 deletions(-)
author Leandro Lucarella <llucax@gmail.com>
date Wed, 06 Jan 2010 15:18:21 -0300
parents 1bb99290e03a
children
line wrap: on
line source

module tangotests.vararg2;

extern(C) int printf(char*, ...);

import tango.core.Vararg;

void main()
{
    func(0xf00, 1, " ", 2, " ", 3, "\n", 0.3, "\n");
}

void func(int foo, ...)
{
    foreach(t; _arguments)
    {
        if (t == typeid(char[]))
        {
            char[] str = va_arg!(char[])(_argptr);
            printf("%.*s", str.length, str.ptr);
        }
        else if (t == typeid(int))
        {
            printf("%d", va_arg!(int)(_argptr));
        }
        else if (t == typeid(float))
        {
            printf("%f", va_arg!(float)(_argptr));
        }
        else if (t == typeid(double))
        {
            printf("%f", va_arg!(double)(_argptr));
        }
        else if (t == typeid(real))
        {
            printf("%f", va_arg!(real)(_argptr));
        }
        else
        {
            assert(0, "not int");
        }
    }
}