blob: 381f00a0a63348f0bd60d0ff08462f995371c403 [file] [log] [blame]
Douglas Gregorb203c9e2010-02-11 18:18:11 +00001typedef int Int;
2typedef float Float;
3
4struct S0 {
5 Int field1;
6 Float field2;
7};
8
9struct S0 x0;
10
11struct S1 {
12 Int field1;
13 int field2;
14};
15
16struct S1 x1;