aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.c-torture/compile/stru.c
blob: 1f76585ef0e0eee1c2c7b2b2702203a2ed43ea9f (plain)
1
2
3
4
5
6
7
8
9
10
struct foo
{
  int a, b, c;
};

void
foo (struct foo *a)
{
  a[0] = a[1];
}