mirror of
https://github.com/MaskRay/ccls.git
synced 2024-11-26 01:21:57 +00:00
25 lines
437 B
C++
25 lines
437 B
C++
|
class Foo;
|
||
|
class Foo;
|
||
|
class Foo {};
|
||
|
class Foo;
|
||
|
|
||
|
/*
|
||
|
OUTPUT:
|
||
|
{
|
||
|
"types": [{
|
||
|
"id": 0,
|
||
|
"short_name": "Foo",
|
||
|
"qualified_name": "Foo",
|
||
|
"declaration": "tests/class_forward_declaration.cc:1:7",
|
||
|
"definition": "tests/class_forward_declaration.cc:3:7",
|
||
|
"parents": [],
|
||
|
"derived": [],
|
||
|
"types": [],
|
||
|
"funcs": [],
|
||
|
"vars": [],
|
||
|
"uses": []
|
||
|
}],
|
||
|
"functions": [],
|
||
|
"variables": []
|
||
|
}
|
||
|
*/
|