[clang] Implement lifetime analysis for lifetime_capture_by(X) (#115921)
[llvm-project.git] / clang / test / PCH / struct.h
blob2ffdd4aea5864752a1eed65893477077fb68dc07
1 // Used with the struct.c test
3 struct Point {
4 float x, y, z;
5 };
7 struct Point2 {
8 float xValue, yValue, zValue;
9 };
11 struct Fun;
13 struct Fun *fun;
15 struct Fun {
16 int is_ptr : 1;
18 union {
19 void *ptr;
20 int *integer;
24 struct Fun2;
25 struct Fun2 *fun2;
27 struct S {
28 struct Nested { int x, y; } nest;