view tests/mini/vararg3.d @ 834:f466f475b654

Added proper "need 'this' to access member foo" errors instead of "variable foo not resolved" for some cases, added FIXME for the old error! Added a bit more information to the runtime's cyclic dependency detection exception.
author Tomas Lindquist Olsen <tomas.l.olsen@gmail.com>
date Tue, 09 Dec 2008 01:56:39 +0100
parents 1bb99290e03a
children
line wrap: on
line source

module vararg3;

import tango.core.Vararg;

void func(...)
{
    assert(_arguments.length == 3);
    assert(_arguments[0] is typeid(int));
    assert(_arguments[1] is typeid(float));
    assert(_arguments[2] is typeid(long));
    assert(va_arg!(int)(_argptr) == 4);
    assert(va_arg!(float)(_argptr) == 2.5f);
    assert(va_arg!(long)(_argptr) == 42L);
}

void main()
{
    func(4, 2.5f, 42L);
}