view tangotests/vararg1.d @ 188:7949d3dd0341 trunk

[svn r204] Don't run complex dstress tests, they seem to be broken.
author ChristianK
date Sat, 10 May 2008 06:44:57 +0200
parents 6476da35a0fe
children
line wrap: on
line source

module tangotests.vararg1;

import tango.stdc.stdio;

void func(int[] arr...)
{
    printf("1,2,4,5,6 == %d,%d,%d,%d,%d\n", arr[0],arr[1],arr[2],arr[3],arr[4]);
}

void main()
{
    func(1,2,4,5,6);
}