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