ccls/tests/namespaces/function_declaration.cc
2017-04-13 22:46:45 -07:00

18 lines
270 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",
"hover": "void (int, int)",
"declarations": ["2:6-2:9"]
}]
}
*/