mirror of
https://github.com/MaskRay/ccls.git
synced 2024-11-22 07:35:08 +00:00
17 lines
271 B
C++
17 lines
271 B
C++
namespace hello {
|
|
void foo(int a, int b);
|
|
}
|
|
|
|
/*
|
|
OUTPUT:
|
|
{
|
|
"types": [],
|
|
"functions": [{
|
|
"id": 0,
|
|
"short_name": "foo",
|
|
"qualified_name": "hello::foo",
|
|
"declaration": "tests/function_declaration_in_namespace.cc:2:6"
|
|
}],
|
|
"variables": []
|
|
}
|
|
*/ |