ccls/tests/templates/template_func_usage_folded_into_one.cc
2017-12-18 22:15:46 -08:00

59 lines
1.3 KiB
C++

template<typename T>
static int foo() {
return 3;
}
int a = foo<int>();
int b = foo<bool>();
// TODO: put template foo inside a namespace
// TODO: put template foo inside a template class inside a namespace
/*
OUTPUT:
{
"includes": [],
"skipped_by_preprocessor": [],
"types": [],
"funcs": [{
"id": 0,
"is_operator": false,
"usr": "c:template_func_usage_folded_into_one.cc@FT@>1#Tfoo#I#",
"short_name": "foo",
"detailed_name": "int foo()",
"hover": "int foo()",
"declarations": [],
"definition_spelling": "2:12-2:15",
"definition_extent": "2:1-4:2",
"base": [],
"derived": [],
"locals": [],
"callers": ["-1@6:9-6:12", "-1@7:9-7:12"],
"callees": []
}],
"vars": [{
"id": 0,
"usr": "c:@a",
"short_name": "a",
"detailed_name": "int a",
"hover": "int",
"definition_spelling": "6:5-6:6",
"definition_extent": "6:1-6:19",
"is_local": false,
"is_macro": false,
"uses": ["6:5-6:6"]
}, {
"id": 1,
"usr": "c:@b",
"short_name": "b",
"detailed_name": "int b",
"hover": "int",
"definition_spelling": "7:5-7:6",
"definition_extent": "7:1-7:20",
"is_local": false,
"is_macro": false,
"uses": ["7:5-7:6"]
}]
}
*/