blob: e3d85abaaeb5150c2995e8e6375a5f1a1862fd1d [file] [log] [blame]
Douglas Gregor8c700062009-04-13 21:20:57 +00001// Used with the struct.c test
2
3struct Point {
4 float x, y, z;
5};
6
7struct Point2 {
8 float xValue, yValue, zValue;
9};
10
11struct Fun;
12
13struct Fun *fun;
14
15struct Fun {
16 int is_ptr;
17
18 union {
19 void *ptr;
20 int *integer;
21 };
22};
23
24struct Fun2;
25struct Fun2 *fun2;