ccls/tests/unions/union_decl.cc

37 lines
669 B
C++
Raw Normal View History

2017-02-21 05:32:40 +00:00
union Foo {
int a;
bool b;
};
/*
OUTPUT:
{
"types": [{
"id": 0,
"usr": "c:@U@Foo",
"short_name": "Foo",
"qualified_name": "Foo",
"definition": "1:1:7",
"vars": [0, 1],
2017-02-21 05:55:48 +00:00
"uses": ["*1:1:7"]
2017-02-21 05:32:40 +00:00
}],
"functions": [],
"variables": [{
"id": 0,
"usr": "c:@U@Foo@FI@a",
"short_name": "a",
"qualified_name": "Foo::a",
"definition": "1:2:7",
"declaring_type": 0,
2017-02-21 05:34:46 +00:00
"uses": ["1:2:7"]
2017-02-21 05:32:40 +00:00
}, {
"id": 1,
"usr": "c:@U@Foo@FI@b",
"short_name": "b",
"qualified_name": "Foo::b",
"definition": "1:3:8",
"declaring_type": 0,
2017-02-21 05:34:46 +00:00
"uses": ["1:3:8"]
2017-02-21 05:32:40 +00:00
}]
}
*/