Release of coccinelle 1.0.0-rc9
[bpt/coccinelle.git] / tests / enum.cocci
CommitLineData
002099fc
C
1@@
2expression *E;
3@@
4
5(
6 E ==
7- 0
8+ NULL
9|
10 E !=
11- 0
12+ NULL
13|
14 E =
15- 0
16+ NULL
17)