llvm-for-llvmta/tools/clang/test/Index/Inputs/t2.c

12 lines
155 B
C
Raw Normal View History

2022-04-25 13:02:35 +02:00
#include "foo.h"
int global_var = 10;
void bar_func(void) {
global_var += 100;
foo_func(global_var);
struct MyStruct *ms;
ms->field_var = 10;
}