mirror of
https://github.com/xomboverlord/ldc.git
synced 2026-01-12 19:03:13 +01:00
17 lines
118 B
D
17 lines
118 B
D
module bug43;
|
|
|
|
struct S
|
|
{
|
|
ubyte[3] vals;
|
|
}
|
|
|
|
void func(ubyte[3] v)
|
|
{
|
|
}
|
|
|
|
void main()
|
|
{
|
|
S s;
|
|
func(s.vals);
|
|
}
|