diff options
Diffstat (limited to 'ipc/ipdl/test/ipdl/error/undefSelfRecStruct.ipdl')
-rw-r--r-- | ipc/ipdl/test/ipdl/error/undefSelfRecStruct.ipdl | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/ipc/ipdl/test/ipdl/error/undefSelfRecStruct.ipdl b/ipc/ipdl/test/ipdl/error/undefSelfRecStruct.ipdl new file mode 100644 index 0000000000..15fc45abcd --- /dev/null +++ b/ipc/ipdl/test/ipdl/error/undefSelfRecStruct.ipdl @@ -0,0 +1,7 @@ +//error: struct `X' is only partially defined + +struct X { X x; }; + +protocol undefSelfRecStruct { +child: async __delete__(X x); +}; |