ccls/tests/usage/var_usage_extern.cc
Jacob Dufault d6123bd861 Every function usage is now considered a call of that function.
This means we will now report function calls that happen in the global scope (previously, those would only show up for find all refs).
2017-04-13 00:47:47 -07:00

27 lines
438 B
C++

extern int a;
void foo() {
a = 5;
}
/*
OUTPUT:
{
"funcs": [{
"id": 0,
"usr": "c:@F@foo#",
"short_name": "foo",
"qualified_name": "foo",
"definition_spelling": "3:6-3:9",
"definition_extent": "3:1-5:2"
}],
"vars": [{
"id": 0,
"usr": "c:@a",
"short_name": "a",
"qualified_name": "a",
"declaration": "1:12-1:13",
"uses": ["1:12-1:13", "4:3-4:4"]
}]
}
*/