ccls/tests/namespaces/function_declaration.cc
Jacob Dufault 46cec6f083 wip
2017-02-18 13:18:08 -08:00

17 lines
269 B
C++

namespace hello {
void foo(int a, int b);
}
/*
OUTPUT:
{
"types": [],
"functions": [{
"id": 0,
"short_name": "foo",
"qualified_name": "hello::foo",
"declaration": "tests/namespaces/function_declaration.cc:2:6"
}],
"variables": []
}
*/