Release coccinelle-0.2.0
[bpt/coccinelle.git] / tests / find_long.cocci
CommitLineData
708f4980
C
1@ C @
2long E1;
3int E2;
4@@
5(
6- E1;
7+ (long)E1;
8|
9- E2;
10+ (int)E2;
11)