Coccinelle release-1.0.0-rc11
[bpt/coccinelle.git] / tests / ifields.res
CommitLineData
8f657093
C
1 typedef struct tag_obj {
2 int x;
3 int y;
4 IFace IFace_iface;
5 int a;
6 } Tobj;
7
8
9 static struct IFaceImpl obj = {
10 1, 2,
11 {
12 &x, 4,
13 },
14 3
15 };
16
17 static struct IFaceImpl obj1 = {
18 1, 2, 6,
19 &x,
20 3
21 };