view tests/mini/vararg2.d @ 1651:cb960b882ca3 default tip

bindings were moved to dsource.org/projects/bindings/
author Moritz Warning <moritzwarning@web.de>
date Thu, 20 May 2010 20:05:03 +0200
parents 4ac97ec7c18e
children
line wrap: on
line source

module vararg2;

void func(...)
{
    assert(_arguments.length == 2);
    assert(_arguments[0] is typeid(int));
    int a = *cast(int*)_argptr;
    _argptr += size_t.sizeof;
    assert(_arguments[1] is typeid(int));
    a += *cast(int*)_argptr;
    _argptr += int.sizeof;
    assert(a == 3);
}

void main()
{
    func(1,2);
}