mirror of
https://github.com/MaskRay/ccls.git
synced 2024-11-22 15:45:08 +00:00
20 lines
276 B
C++
20 lines
276 B
C++
void foo();
|
|
|
|
void foo() {}
|
|
|
|
/*
|
|
OUTPUT:
|
|
{
|
|
"types": [],
|
|
"funcs": [{
|
|
"id": 0,
|
|
"usr": "c:@F@foo#",
|
|
"short_name": "foo",
|
|
"qualified_name": "foo",
|
|
"declarations": ["1:1:6"],
|
|
"definition": "1:3:6",
|
|
"uses": ["1:1:6", "1:3:6"]
|
|
}]
|
|
}
|
|
*/
|