YouCompleteMe/cpp/llvm/tools/clang/test/Index/Inputs/t2.c
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

12 lines
155 B
C

#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;
}