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

sync protocol Parray_Union {
parent:
    sync Msg(Union u, Union[] au) returns (Union r);
};