diff options
Diffstat (limited to 'ipc/ipdl/test/ipdl/error/PBadNestedManagee.ipdl')
-rw-r--r-- | ipc/ipdl/test/ipdl/error/PBadNestedManagee.ipdl | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/ipc/ipdl/test/ipdl/error/PBadNestedManagee.ipdl b/ipc/ipdl/test/ipdl/error/PBadNestedManagee.ipdl new file mode 100644 index 0000000000..eca24e00d4 --- /dev/null +++ b/ipc/ipdl/test/ipdl/error/PBadNestedManagee.ipdl @@ -0,0 +1,9 @@ +//error: protocol `PBadNestedManagee' requires more powerful send semantics than its manager `PBadNestedManager' provides + +include protocol PBadNestedManager; + +[NestedUpTo=inside_sync] async protocol PBadNestedManagee { + manager PBadNestedManager; +child: + async __delete__(); +}; |