Files
ldc/test/vararg3.d
Tomas Lindquist Olsen 964f91b5a1 [svn r291] Fixed a bunch of the old Phobos tests to work with Tango.
Branch statements now emit a new block after it.
Fixed the _adSort runtime function had a bad signature.
Added a missing dot prefix on compiler generated string tables for string switch.
Fixed, PTRSIZE seems like it was wrong on 64bit, now it definitely gets set properly.
2008-06-16 16:01:19 +02:00

20 lines
397 B
D

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);
}