mirror of
https://github.com/MaskRay/ccls.git
synced 2024-11-22 23:55:08 +00:00
18 lines
252 B
C++
18 lines
252 B
C++
namespace {
|
|
void foo();
|
|
}
|
|
|
|
/*
|
|
OUTPUT:
|
|
{
|
|
"funcs": [{
|
|
"id": 0,
|
|
"usr": "c:anonymous_function.cc@aN@F@foo#",
|
|
"short_name": "foo",
|
|
"qualified_name": "::foo",
|
|
"declarations": ["2:6-2:9"],
|
|
"uses": ["2:6-2:9"]
|
|
}]
|
|
}
|
|
*/
|