ccls/index_tests/preprocessor/include_guard.cc

29 lines
478 B
C++
Raw Normal View History

2018-03-31 03:16:33 +00:00
#ifndef FOO
#define FOO
#endif
/*
OUTPUT:
{
"includes": [],
"skipped_by_preprocessor": [],
"usr2func": [],
"usr2type": [],
"usr2var": [{
"usr": 11674328179498211370,
2018-03-31 03:16:33 +00:00
"detailed_name": "FOO",
"qual_name_offset": 0,
2018-03-31 03:16:33 +00:00
"short_name": "FOO",
"hover": "#define FOO",
"declarations": [],
"spell": "2:9-2:12|0|1|2",
"extent": "2:9-2:12|0|1|0",
"type": 0,
2018-03-31 03:16:33 +00:00
"uses": [],
"kind": 255,
"storage": 0
}]
}
*/