ccls/tests/declaration_vs_definition/class_member_static.cc

31 lines
519 B
C++
Raw Normal View History

2017-02-20 07:51:31 +00:00
class Foo {
static int foo;
};
int Foo::foo;
/*
OUTPUT:
{
"types": [{
"id": 0,
"usr": "c:@S@Foo",
"short_name": "Foo",
"qualified_name": "Foo",
2017-02-21 04:05:03 +00:00
"definition": "1:1:7",
2017-02-20 07:51:31 +00:00
"vars": [0],
2017-02-21 05:55:48 +00:00
"uses": ["*1:1:7", "1:5:5"]
2017-02-20 07:51:31 +00:00
}],
2017-03-07 18:17:49 +00:00
"vars": [{
2017-02-20 07:51:31 +00:00
"id": 0,
"usr": "c:@S@Foo@foo",
"short_name": "foo",
"qualified_name": "Foo::foo",
2017-02-21 04:05:03 +00:00
"declaration": "1:2:14",
"definition": "1:5:10",
2017-02-20 07:51:31 +00:00
"declaring_type": 0,
2017-02-21 05:34:46 +00:00
"uses": ["1:2:14", "1:5:10"]
2017-02-20 07:51:31 +00:00
}]
}
2017-03-07 18:17:49 +00:00
*/