Release coccinelle-0.1
[bpt/coccinelle.git] / tests / deref.c
1 int main () {
2 int **q;
3 foo(*q+12);
4 xxx(q[0]+12);
5 yyy(q+12);
6 }