comparison test/bug43.d @ 78:2332006e1fa4 trunk

[svn r82] Fixed: Fall-through switch cases were broken.
author lindquist
date Wed, 31 Oct 2007 20:50:21 +0100
parents
children
comparison
equal deleted inserted replaced
77:714057ff2dbb 78:2332006e1fa4
1 module bug43;
2
3 struct S
4 {
5 ubyte[3] vals;
6 }
7
8 void func(ubyte[3] v)
9 {
10 }
11
12 void main()
13 {
14 S s;
15 func(s.vals);
16 }