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

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

protocol PAsyncReturn {
child:
    async Msg() returns(int32_t aNumber);
};