ccls/tests/namespaces/function_declaration.cc
2017-04-05 01:06:18 -07:00

18 lines
255 B
C++

namespace hello {
void foo(int a, int b);
}
/*
OUTPUT:
{
"funcs": [{
"id": 0,
"usr": "c:@N@hello@F@foo#I#I#",
"short_name": "foo",
"qualified_name": "hello::foo",
"declarations": ["2:6"],
"uses": ["2:6"]
}]
}
*/