diff options
Diffstat (limited to 'ipc/ipdl/test/ipdl/error/PBadSideImpl.ipdl')
-rw-r--r-- | ipc/ipdl/test/ipdl/error/PBadSideImpl.ipdl | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/ipc/ipdl/test/ipdl/error/PBadSideImpl.ipdl b/ipc/ipdl/test/ipdl/error/PBadSideImpl.ipdl new file mode 100644 index 0000000000..75aebd4670 --- /dev/null +++ b/ipc/ipdl/test/ipdl/error/PBadSideImpl.ipdl @@ -0,0 +1,8 @@ +//error: invalid value for attribute `ParentImpl', expected one of: virtual, StringLiteral +//error: invalid value for attribute `ChildImpl', expected one of: virtual, StringLiteral + +[ParentImpl=NotQuoted, ChildImpl] +async protocol PBadSideImpl { + parent: + async __delete__(); +}; |