summaryrefslogtreecommitdiffstats
path: root/ipc/ipdl/test/ipdl/error/SyncAsyncManagee.ipdl
blob: 166881ae1e3b3122fea22dd0aac664fb83e4ab70 (plain)
1
2
3
4
5
6
7
8
9
//error: protocol `SyncAsyncManagee' requires more powerful send semantics than its manager `SyncAsyncManager' provides

include protocol SyncAsyncManager;

sync protocol SyncAsyncManagee {
    manager SyncAsyncManager;
child:
    async __delete__();
};