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