summaryrefslogtreecommitdiffstats
path: root/ipc/ipdl/test/ipdl/ok/PStructComparable.ipdl
blob: ca1f654bb55dd1553e5470f96d92d016031efc32 (plain)
1
2
3
4
5
6
7
8
9
10
[Comparable] struct S {
    int i;
    double d;
};

sync protocol PStructComparable {
parent:
    sync test(S s) returns (S ss);
    async __delete__();
};