[OptTable] Fix typo VALUE => VALUES (NFCI) (#121523)
[llvm-project.git] / clang / test / Index / Inputs / t1.c
blobceaad4c7f3a68333257ff71ef695de5d94e2b75b
1 #include "foo.h"
3 void foo_func(int param1) {
4 int local_var = global_var;
5 for (int for_var = 100; for_var < 500; ++for_var) {
6 local_var = param1 + for_var;
8 bar_func();
11 struct S1 {
12 int x;
15 struct S2 {
16 int x;
19 void field_test(void) {
20 struct S1 s1;
21 s1.x = 0;
22 ((struct S2 *)0)->x = 0;
24 struct MyStruct ms;
25 ms.field_var = 10;
28 int (^CP)(int) = ^(int x) { return x * global_var; };