ccls/tests/inheritance/interface_pure_virtual.cc
2017-02-20 20:05:03 -08:00

28 lines
504 B
C++

class IFoo {
virtual void foo() = 0 {}
};
/*
OUTPUT:
{
"types": [{
"id": 0,
"usr": "c:@S@IFoo",
"short_name": "IFoo",
"qualified_name": "IFoo",
"definition": "1:1:7",
"funcs": [0],
"all_uses": ["1:1:7"]
}],
"functions": [{
"id": 0,
"usr": "c:@S@IFoo@F@foo#",
"short_name": "foo",
"qualified_name": "IFoo::foo",
"definition": "1:2:16",
"declaring_type": 0,
"all_uses": ["1:2:16"]
}],
"variables": []
}
*/