xref: /Universal-ctags/Tmain/e-ctags-output.d/input_file.cc (revision cb5f45b4466cbd5e091a8564b9309bf924825fca)
1 /* Could NOT be parsed well.
2    The signature should be  recorded well. */
test(int32 a)3 int32 test(int32 a)
4 {
5     return 0;
6 }
7 /* Can be parsed */
test2(void)8 int32 test2(void)
9 {
10     return 0;
11 }
12 
13 /* A tab is included in signature.
14    However, it should be recorded well after converting
15    the tab to a whitespace. */
test3(int32 a)16 int32 test3(int32	a)
17 {
18     return 0;
19 }
20 
21 /* A newline is included in signature.
22    However, it should be recorded well after converting
23    the newline to a whitespace. */
test4(int32 a)24 int32 test4(int32
25 a)
26 {
27     return 0;
28 }
29