2017-02-19 05:47:16 +00:00
|
|
|
static int a;
|
|
|
|
|
|
|
|
void foo() {
|
|
|
|
a = 3;
|
|
|
|
}
|
|
|
|
|
2017-02-18 21:18:08 +00:00
|
|
|
/*
|
|
|
|
OUTPUT:
|
|
|
|
{
|
|
|
|
"types": [],
|
2017-02-19 05:47:16 +00:00
|
|
|
"functions": [{
|
|
|
|
"id": 0,
|
|
|
|
"usr": "c:@F@foo#",
|
|
|
|
"short_name": "foo",
|
|
|
|
"qualified_name": "foo",
|
|
|
|
"definition": "tests/usage/var_usage_static.cc:3:6"
|
|
|
|
}],
|
|
|
|
"variables": [{
|
|
|
|
"id": 0,
|
|
|
|
"usr": "c:var_usage_static.cc@a",
|
|
|
|
"short_name": "a",
|
|
|
|
"qualified_name": "a",
|
|
|
|
"declaration": "tests/usage/var_usage_static.cc:1:12",
|
|
|
|
"initializations": ["tests/usage/var_usage_static.cc:1:12"],
|
|
|
|
"uses": ["tests/usage/var_usage_static.cc:4:3"]
|
|
|
|
}]
|
2017-02-18 21:18:08 +00:00
|
|
|
}
|
|
|
|
*/
|