summaryrefslogtreecommitdiffstats
path: root/ipc/ipdl/test/ipdl/error/structUnknownField.ipdl
diff options
context:
space:
mode:
Diffstat (limited to 'ipc/ipdl/test/ipdl/error/structUnknownField.ipdl')
-rw-r--r--ipc/ipdl/test/ipdl/error/structUnknownField.ipdl9
1 files changed, 9 insertions, 0 deletions
diff --git a/ipc/ipdl/test/ipdl/error/structUnknownField.ipdl b/ipc/ipdl/test/ipdl/error/structUnknownField.ipdl
new file mode 100644
index 0000000000..ac92edee23
--- /dev/null
+++ b/ipc/ipdl/test/ipdl/error/structUnknownField.ipdl
@@ -0,0 +1,9 @@
+//error: field `i' of struct `S' has unknown type `Foobers'
+
+struct S {
+ Foobers i;
+};
+
+protocol structUnknownField {
+child: async __delete__(S s);
+};