1/* { dg-do compile } */
2/* { dg-options "-O3" } */
3
4struct Geometry
5{
6        int type:16;
7};
8struct Geometry get() {};
9int f()
10{
11        struct Geometry test;
12        return get().type == test.type;
13}
14
15