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