aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gcc.c-torture/compile/struct-non-lval-2.c
blob: daa0d17492d78457193ab7c21a933fa40230bd86 (plain)
1
2
3
4
5
6
7
/* Bug c/17855, using conditional expression for non-lvalue.  */
struct foo {char x, y, z[2];};
struct foo p, q; int r;
void bar(int baz)
{
  (r ? p : q).z[baz] = 1;
}