1  struct a {int a,b;};
       2  const static struct a a[1]={{1,2}};
       3  struct a b,c;
       4  t()
       5  {
       6    int idx = 0;
       7    b=a[idx];
       8    c=a[idx];
       9  }
       1  struct a {int a,b;};
       2  const static struct a a[1]={{1,2}};
       3  struct a b,c;
       4  t()
       5  {
       6    int idx = 0;
       7    b=a[idx];
       8    c=a[idx];
       9  }