mirror of
https://github.com/MaskRay/ccls.git
synced 2024-11-22 15:45:08 +00:00
b5305e14f2
This does not handle setting |is_macro|, this CL is about updating the tests.
17 lines
277 B
C++
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"]
|
|
}]
|
|
}
|
|
*/
|