ccls/tests/constructors/invalid_reference.cc

29 lines
485 B
C++
Raw Normal View History

struct Foo {};
template<class T>
Foo::Foo() {}
/*
OUTPUT:
{
"types": [{
"id": 0,
"usr": "c:@S@Foo",
"short_name": "Foo",
"qualified_name": "Foo",
2017-04-05 08:06:18 +00:00
"definition": "1:8",
"funcs": [0],
2017-04-05 08:06:18 +00:00
"uses": ["*1:8", "4:6", "4:1"]
}],
2017-03-07 18:17:49 +00:00
"funcs": [{
"id": 0,
"usr": "c:@S@Foo@FT@>1#TFoo#v#",
"short_name": "Foo",
"qualified_name": "Foo::Foo",
2017-04-05 08:06:18 +00:00
"definition": "4:6",
"declaring_type": 0,
2017-04-05 08:06:18 +00:00
"uses": ["4:6"]
2017-03-07 18:17:49 +00:00
}]
}
2017-03-07 18:17:49 +00:00
*/