view tangotests/vararg1.d @ 204:11fe364b9a3e trunk

[svn r220] Added: test results for [219]
author lindquist
date Tue, 13 May 2008 16:16:50 +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);
}