view tests/mini/bug43.d @ 451:4d9108f1fbf4

merge ...
author Tomas Lindquist Olsen <tomas.l.olsen@gmail.com>
date Fri, 01 Aug 2008 21:56:13 +0200
parents 1bb99290e03a
children
line wrap: on
line source

module bug43;

struct S
{
    ubyte[3] vals;
}

void func(ubyte[3] v)
{
}

void main()
{
    S s;
    func(s.vals);
}