ccls/tests/vars/global_variable.cc

23 lines
475 B
C++
Raw Normal View History

2017-02-18 21:18:08 +00:00
static int global = 0;
2017-02-18 19:37:24 +00:00
/*
OUTPUT:
{
2017-02-18 21:18:08 +00:00
"types": [{
"id": 0,
"short_name": "",
"qualified_name": "",
"declaration": null
}],
"functions": [],
"variables": [{
"id": 0,
"short_name": "global",
"qualified_name": "global",
"declaration": "tests/vars/global_variable.cc:1:12",
"initializations": ["tests/vars/global_variable.cc:1:12"],
"variable_type": 0,
"declaring_type": null,
"uses": []
}]
2017-02-18 19:37:24 +00:00
}
*/