ccls/tests/function_declaration_definition.cc

19 lines
339 B
C++
Raw Normal View History

2017-02-18 19:37:24 +00:00
void foo();
void foo() {}
/*
OUTPUT:
{
"types": [],
"functions": [{
"id": 0,
2017-02-18 23:58:40 +00:00
"usr": "c:@F@foo#",
2017-02-18 19:37:24 +00:00
"short_name": "foo",
"qualified_name": "foo",
"declaration": "tests/function_declaration_definition.cc:1:6",
2017-02-18 23:58:40 +00:00
"definition": "tests/function_declaration_definition.cc:3:6"
2017-02-18 19:37:24 +00:00
}],
"variables": []
}
*/