Release coccinelle-0.1
[bpt/coccinelle.git] / tests / bad_iso_example.cocci
CommitLineData
34e49164
C
1@r@
2expression E,E1;
3statement S1,S2;
4@@
5
6+ E = E1;
7if (
8- !(E = E1)
9+ E
10 )
11S1 else S2
12
13// @@
14// expression E,E1;
15// statement S1,S2;
16// @@
17
18// + E = E1;
19// if (
20// - E = E1
21// + E
22// )
23// S1 else S2