Coccinelle release 1.0.0-rc4
[bpt/coccinelle.git] / tests / comments.res
CommitLineData
c3e37e97
C
1
2int main() {
3 // Calls foo()
4 foo();
5 return 0;
6}
7
8/**
9 Some info about @foo()
10 @return void
11*/
12void foo() {
13/* Do nothing */
14
15}
16