Merge pull request #3648 from techee/nim_lexer
[geany-mirror.git] / tests / ctags / bug1111214.v
blobdbe18b8ffddab369fa58ec6e2c1b83b3ffcee26a
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 preceding 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