YouCompleteMe/cpp/llvm/tools/clang/test/PCH/struct.h
Strahinja Val Markovic 1f51a89d39 Adding more llvm/clang files
These were ignored by git accidentally. We want ALL OF THEM since they all came
in the llvm/clang source distribution.
2012-07-05 17:55:45 -07:00

30 lines
319 B
C

// Used with the struct.c test
struct Point {
float x, y, z;
};
struct Point2 {
float xValue, yValue, zValue;
};
struct Fun;
struct Fun *fun;
struct Fun {
int is_ptr : 1;
union {
void *ptr;
int *integer;
};
};
struct Fun2;
struct Fun2 *fun2;
struct S {
struct Nested { int x, y; } nest;
};