Release coccinelle-0.2.1-rc1
[bpt/coccinelle.git] / tests / vpos.cocci
CommitLineData
34e49164
C
1// shows how a single position variable can get more than one value
2
3@a@
4position p;
5identifier g;
6@@
7
8f(...)
9...
10g@p(1,...)
11
12@@
13position a.p;
14identifier a.g;
15@@
16
17- g@p(...);