ccls/tests/declaration_vs_definition/class.cc

22 lines
410 B
C++
Raw Normal View History

2017-02-20 07:51:31 +00:00
class Foo;
class Foo;
class Foo {};
class Foo;
/*
// NOTE: Separate decl/definition are not supported for classes. See source
// for comments.
OUTPUT:
{
"types": [{
"id": 0,
"usr": "c:@S@Foo",
"short_name": "Foo",
"qualified_name": "Foo",
2017-02-21 00:25:00 +00:00
"definition": "*1:3:7",
"all_uses": ["*1:1:7", "*1:2:7", "*1:3:7", "*1:4:7"]
2017-02-20 07:51:31 +00:00
}],
"functions": [],
"variables": []
}
*/