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

include protocol PBadNestedManagee;

[NestedUpTo=not] async protocol PBadNestedManager {
    manages PBadNestedManagee;
parent:
    async PBadNestedManagee();
};