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

protocol tooWeakSyncAsync {

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

parent:  sync Msg();

};