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