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