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

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