summaryrefslogtreecommitdiff
path: root/tests/unnamed_fields.c
blob: d259d44e5c5c1c9e583d494fa4b7703cea7a7448 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
struct xyz {
  int z;
  struct {
    int x;
    int y;
  };
};

int main() {
  struct xyz abc;
  abc.x = 5;
  return abc.x;
}
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback