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

[ChildProc=any]
protocol tooWeakIntrAsync {

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

parent: [LegacyIntr] intr Msg();

};