Coccinelle release 0.2.5-rc8
[bpt/coccinelle.git] / tests / double_assign.res
1 int main() {
2 x = 12;
3 x = x + 1;
4 }
5
6 int badmain() {
7 x = 1;
8 }