ccls/tests/class_forward_declaration.cc
2017-12-18 21:20:00 -08:00

31 lines
550 B
C++

class Foo;
class Foo;
class Foo {};
class Foo;
/*
OUTPUT:
{
"includes": [],
"skipped_by_preprocessor": [],
"types": [{
"id": 0,
"usr": "c:@S@Foo",
"short_name": "Foo",
"detailed_name": "Foo",
"hover": "Foo",
"definition_spelling": "3:7-3:10",
"definition_extent": "3:1-3:13",
"parents": [],
"derived": [],
"types": [],
"funcs": [],
"vars": [],
"instances": [],
"uses": ["1:7-1:10", "2:7-2:10", "3:7-3:10", "4:7-4:10"]
}],
"funcs": [],
"vars": []
}
*/