blob: 5e40f1746f98990233d4e5c680607f61198c1c22 [file] [log] [blame]
/* { dg-do compile } */
/* { dg-options "-O3" } */
struct Geometry
{
int type:16;
};
struct Geometry get() {};
int f()
{
struct Geometry test;
return get().type == test.type;
}