ccls/tests/usage/var_usage_extern.cc
Jacob Dufault 07c984d6c7 - Add type information to qualified_name, remove hover.
- Allow tests to automatically update their expecatations
2017-04-14 21:53:10 -07:00

27 lines
449 B
C++

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