aboutsummaryrefslogtreecommitdiff
path: root/test/Index/t1.c
blob: 17cdb7dc4ff68bfa68a06eafd5865f8b66a063c1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#include "foo.h"

void foo_func(int param1) {
  int local_var = global_var;
  for (int for_var = 100; for_var < 500; ++for_var) {
    local_var = param1 + for_var;
  }
  bar_func();
}

struct S1 {
  int x;
};

struct S2 {
  int x;
};

void field_test(void) {
  struct S1 s1;
  s1.x = 0;
  ((struct S2 *)0)->x = 0;
}