1unsigned short foo (void)
2{
3  unsigned short u[1] = { 1 };
4  u[0] = 0;
5  u[1] = 1;
6  u[2] = 2;
7  return u[0] + u[1] + u[2];
8}
9