summaryrefslogtreecommitdiffstats
path: root/ipc/ipdl/test/ipdl/ok/Pmaybe_Union.ipdl
blob: 67f24cb794aa2360cbcdd434642c243ee8ff8221 (plain)
1
2
3
4
5
6
7
8
9
10
union MaybeUnion {
    int[];
    int;
    double;
};

sync protocol Pmaybe_Union {
parent:
    async Msg(MaybeUnion u, MaybeUnion? au) returns (MaybeUnion r);
};