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

[ChildProc=any]
protocol PselfRecUnion {
child:
    async Test(R r);
    async __delete__();
};