Windows: fix possible buffer overflows
[geany-mirror.git] / tests / ctags / bug1111214.v
blobdce63e575c4c570ba8c7409b9b73474dcd15e1ce
1 // File example.v
2 //
3 // Below is an example of a comment that is mis-parsed by exuberant ctags.
4 // It uses the multi-line comment format, i.e. /* ... */ except that in
5 // this case, the character sequence immediately preceeding the closing
6 // delimiter is an asterisk. (Any even number of asterisks would have the
7 // same problem.
8 // The line immediately afterwards is used to demonstrate the problem.
9 // the module name 'wahoo' isn't recognised, because the parser mistakenly
10 // thinks we are still in a multi-line comment.
12 * I am a multi-line comment
13 * I happen to end in a strange
14 * (but legal) way: **/
15 module wahoo ()
16 begin
17 end