ccls/tests/declaration_vs_definition/func.cc

22 lines
383 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:
{
2017-03-07 18:17:49 +00:00
"funcs": [{
2017-02-20 07:51:31 +00:00
"id": 0,
"usr": "c:@F@foo#",
"short_name": "foo",
"qualified_name": "foo",
2017-04-05 08:06:18 +00:00
"declarations": ["1:6", "2:6", "4:6"],
"definition": "3:6",
"uses": ["1:6", "2:6", "3:6", "4:6"]
2017-03-07 18:17:49 +00:00
}]
2017-02-20 07:51:31 +00:00
}
2017-03-07 18:17:49 +00:00
*/