summaryrefslogtreecommitdiffstats
path: root/ipc/ipdl/test/ipdl/ok/PselfRecUnion.ipdl
blob: 7d76c34542f45f787f15fbc34d255d542f9b0d3a (plain)
1
2
3
4
5
6
7
8
9
10
11
union R {
    int;
    double;
    R;
};

protocol PselfRecUnion {
child:
    async Test(R r);
    async __delete__();
};