summaryrefslogtreecommitdiff
path: root/test/CFrontend/2003-09-30-StructLayout.c
blob: 2dc81225e9a448fde66e6831a9f639702061ae6b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
enum En {
  ENUM_VAL
};

struct St {
  unsigned char A;
  enum En B;
  unsigned char C;
  enum En D;
  float E;
};


void func(struct St* A) {
  A->D = ENUM_VAL;
}