ccls/tests/vars/function_shadow_local.cc
2017-02-18 16:53:31 -08:00

39 lines
985 B
C++

void foo() {
int a;
{
int a;
}
}
/*
OUTPUT:
{
"types": [{
"id": 0,
"uses": ["tests/vars/function_shadow_local.cc:2:7", "tests/vars/function_shadow_local.cc:4:9"]
}],
"functions": [{
"id": 0,
"usr": "c:@F@foo#",
"short_name": "foo",
"qualified_name": "foo",
"definition": "tests/vars/function_shadow_local.cc:1:6"
}],
"variables": [{
"id": 0,
"usr": "c:function_shadow_local.cc@16@F@foo#@a",
"short_name": "a",
"qualified_name": "a",
"declaration": "tests/vars/function_shadow_local.cc:2:7",
"initializations": ["tests/vars/function_shadow_local.cc:2:7"],
"variable_type": 0
}, {
"id": 1,
"usr": "c:function_shadow_local.cc@33@F@foo#@a",
"short_name": "a",
"qualified_name": "a",
"declaration": "tests/vars/function_shadow_local.cc:4:9",
"initializations": ["tests/vars/function_shadow_local.cc:4:9"],
"variable_type": 0
}]
}
*/