ccls/tests/vars/class_static_member_decl_only.cc

32 lines
665 B
C++
Raw Normal View History

2017-02-18 21:18:08 +00:00
class Foo {
static int member;
};
2017-02-18 19:37:24 +00:00
/*
OUTPUT:
{
2017-02-18 21:18:08 +00:00
"types": [{
"id": 0,
"short_name": "Foo",
"qualified_name": "Foo",
"declaration": null,
"definition": "tests/vars/class_static_member_decl_only.cc:1:7",
"parents": [],
"derived": [],
"types": [],
"funcs": [],
"vars": [0],
"uses": []
}],
"functions": [],
"variables": [{
"id": 0,
"short_name": "member",
"qualified_name": "Foo::member",
"declaration": "tests/vars/class_static_member_decl_only.cc:2:14",
"initializations": [],
"variable_type": null,
"declaring_type": 0,
"uses": []
}]
2017-02-18 19:37:24 +00:00
}
*/