ccls/tests/namespaces/function_definition.cc
Jacob Dufault 07c984d6c7 - Add type information to qualified_name, remove hover.
- Allow tests to automatically update their expecatations
2017-04-14 21:53:10 -07:00

18 lines
273 B
C++

namespace hello {
void foo() {}
}
/*
OUTPUT:
{
"funcs": [{
"id": 0,
"usr": "c:@N@hello@F@foo#",
"short_name": "foo",
"qualified_name": "void hello::foo()",
"definition_spelling": "2:6-2:9",
"definition_extent": "2:1-2:14"
}]
}
*/