summaryrefslogtreecommitdiffstats
path: root/ipc/ipdl/test/ipdl/ok/PmutualRecStructUnion.ipdl
blob: 0fe5501a09c9bdf6f75f298585c6f4a7e69b096c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
struct X {
    int i;
    Y[] y;
};

union Y {
    double;
    X;
    Z;
};

struct Z {
    X x;
    Y y;
};

protocol PmutualRecStructUnion {
child:
    async Test(X x, Y y, Z z);
    async __delete__();
};