Release coccinelle-0.1.1
[bpt/coccinelle.git] / tests / double_assign.c
1 int main() {
2 x = 12;
3 x = x + 1;
4 }
5
6 int badmain() {
7 x = 12;
8 x = 1;
9 }