foo(void)1 void foo(void)
2 {
3    int a;
4    int b;// comment
5 
6    /* comment */
7    a = b;
8    return;
9 }
10