ccls/tests/declaration_vs_definition/func.cc

23 lines
425 B
C++
Raw Normal View History

2017-02-20 07:51:31 +00:00
void foo();
void foo();
void foo() {}
void foo();
/*
// Note: we always use the latest seen ("most local") definition/declaration.
OUTPUT:
{
"types": [],
"functions": [{
"id": 0,
"usr": "c:@F@foo#",
"short_name": "foo",
"qualified_name": "foo",
2017-02-21 00:25:00 +00:00
"declaration": "*1:4:6",
"definition": "*1:3:6",
"all_uses": ["*1:1:6", "*1:2:6", "*1:3:6", "*1:4:6"]
2017-02-20 07:51:31 +00:00
}],
"variables": []
}
*/