view test/bug56.d @ 214:629cfc1e7b77 trunk

[svn r230] Added vararg3 sample tangotest.
author lindquist
date Fri, 30 May 2008 19:32:56 +0200
parents 70d6113eeb8c
children
line wrap: on
line source

module bug56;

void main()
{
    int[] a;
    a = [1,2,3];
    {int[] b = [4,5,6];}
}