ccls/tests/declaration_vs_definition/func.cc
Jacob Dufault 4e2f24ac17 fix tests
2017-03-08 00:09:15 -08:00

22 lines
399 B
C++

void foo();
void foo();
void foo() {}
void foo();
/*
// Note: we always use the latest seen ("most local") definition/declaration.
OUTPUT:
{
"funcs": [{
"id": 0,
"usr": "c:@F@foo#",
"short_name": "foo",
"qualified_name": "foo",
"declarations": ["1:1:6", "1:2:6", "1:4:6"],
"definition": "1:3:6",
"uses": ["1:1:6", "1:2:6", "1:3:6", "1:4:6"]
}]
}
*/