Coccinelle release 1.0.0-rc4
[bpt/coccinelle.git] / tests / ifields.c
1 typedef struct tag_obj {
2 int x;
3 int y;
4 const IFaceVtbl *lpVtbl;
5 int a;
6 } Tobj;
7
8
9 static struct IFaceImpl obj = {
10 1, 2,
11 &x,
12 3
13 };
14
15 static struct IFaceImpl obj1 = {
16 1, 2, 6,
17 &x,
18 3
19 };