mirror of
https://github.com/xomboverlord/ldc.git
synced 2026-04-22 03:39:03 +02:00
[svn r82] Fixed: Fall-through switch cases were broken.
This commit is contained in:
16
test/bug43.d
Normal file
16
test/bug43.d
Normal file
@@ -0,0 +1,16 @@
|
||||
module bug43;
|
||||
|
||||
struct S
|
||||
{
|
||||
ubyte[3] vals;
|
||||
}
|
||||
|
||||
void func(ubyte[3] v)
|
||||
{
|
||||
}
|
||||
|
||||
void main()
|
||||
{
|
||||
S s;
|
||||
func(s.vals);
|
||||
}
|
||||
Reference in New Issue
Block a user