aboutsummaryrefslogtreecommitdiff
path: root/test/ASTMerge/Inputs/struct1.c
blob: 381f00a0a63348f0bd60d0ff08462f995371c403 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
typedef int Int;
typedef float Float;

struct S0 {
  Int field1;
  Float field2;
};

struct S0 x0;

struct S1 {
  Int field1;
  int field2;
};

struct S1 x1;