ccls/tests/vars/global_variable_decl_only.cc
Jacob Dufault b5305e14f2 Add |is_macro| state to IndexVar.
This does not handle setting |is_macro|, this CL is about updating the
tests.
2017-06-28 23:25:29 -07:00

17 lines
277 B
C++

extern int global;
/*
OUTPUT:
{
"vars": [{
"id": 0,
"usr": "c:@global",
"short_name": "global",
"detailed_name": "int global",
"declaration": "1:12-1:18",
"is_local": false,
"is_macro": false,
"uses": ["1:12-1:18"]
}]
}
*/