summaryrefslogtreecommitdiffstats
path: root/ipc/ipdl/test/ipdl/ok/PAsyncReturn.ipdl
blob: 5deae9216b1d6459441ebe54ccc3df0893995eac (plain)
1
2
3
4
5
6
7
8
9
// Async messages are not allowed to return values.

//error: asynchronous message `Msg' declares return values

[ChildProc=any]
protocol PAsyncReturn {
child:
    async Msg() returns(int32_t aNumber);
};