ccls/tests/inheritance/interface_pure_virtual.cc

28 lines
467 B
C++
Raw Normal View History

2017-02-20 07:06:38 +00:00
class IFoo {
virtual void foo() = 0 {}
};
/*
OUTPUT:
{
"types": [{
"id": 0,
"usr": "c:@S@IFoo",
"short_name": "IFoo",
"qualified_name": "IFoo",
2017-04-05 08:06:18 +00:00
"definition": "1:7",
2017-02-20 07:06:38 +00:00
"funcs": [0],
2017-04-05 08:06:18 +00:00
"uses": ["*1:7"]
2017-02-20 07:06:38 +00:00
}],
2017-03-08 00:21:23 +00:00
"funcs": [{
2017-02-20 07:06:38 +00:00
"id": 0,
"usr": "c:@S@IFoo@F@foo#",
"short_name": "foo",
"qualified_name": "IFoo::foo",
2017-04-05 08:06:18 +00:00
"definition": "2:16",
2017-02-20 07:06:38 +00:00
"declaring_type": 0,
2017-04-05 08:06:18 +00:00
"uses": ["2:16"]
2017-03-08 00:21:23 +00:00
}]
2017-02-20 07:06:38 +00:00
}
2017-03-08 00:21:23 +00:00
*/