Release coccinelle-0.1
[bpt/coccinelle.git] / tests / braces.res
1 #define main foo();
2
3 int main() { foo(); }
4
5 int main() { if (x) foo(); }
6
7 int main() { while (x) foo(); }
8
9 int main() { if (x) foo(); else foo(); }