ccls/tests/namespaces/anonymous_function.cc
2017-12-01 17:07:03 -08:00

22 lines
360 B
C++

namespace {
void foo();
}
/*
OUTPUT:
{
"funcs": [{
"id": 0,
"is_operator": false,
"usr": "c:anonymous_function.cc@aN@F@foo#",
"short_name": "foo",
"detailed_name": "void ::foo()",
"declarations": [{
"spelling": "2:6-2:9",
"extent": "2:1-2:11",
"content": "void foo()"
}]
}]
}
*/