1/* Bug c/17855, using assignment for non-lvalue.  */
2struct foo {char x, y, z[2];};
3struct foo p, q;
4void bar(int baz)
5{
6  (p = q).z[baz] = 1;
7}
8