(root)/
gcc-13.2.0/
gcc/
testsuite/
g++.dg/
opt/
pr27826.C
/* { 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;
}