summaryrefslogtreecommitdiffstats
path: root/ipc/ipdl/test/ipdl/error/tooWeakSyncAsync.ipdl
blob: 8ebbfd25dababbdff3fdd4f3a0cbb83333b6680b (plain)
1
2
3
4
5
6
7
8
9
10
//error: message `Msg' requires more powerful send semantics than its protocol `tooWeakSyncAsync' provides

[ChildProc=any]
protocol tooWeakSyncAsync {

    // it's an error to declare an async protocol with a sync message

parent:  sync Msg();

};