coccinelle release 0.2.5
[bpt/coccinelle.git] / tests / tyex.c
1 typedef struct {
2 double x;
3 double y;
4 char *name;
5 } Location;
6
7 int main () {
8 Location a;
9 Location *b;
10 foo (a.x,a.y,a.name);
11 foo (b->x,b->y,b->name);
12 }