rt_gccstream/gcc/testsuite/gcc.c-torture/compile/struct-non-lval-1.c

8 lines
107 B
C

/* Bug c/17855. */
struct foo {char x, y, z[2];};
struct foo f();
void bar(int baz)
{
f().z[baz] = 1;
}