summaryrefslogtreecommitdiffstats
path: root/ipc/ipdl/test/ipdl/error/undeclReturnType.ipdl
diff options
context:
space:
mode:
Diffstat (limited to 'ipc/ipdl/test/ipdl/error/undeclReturnType.ipdl')
-rw-r--r--ipc/ipdl/test/ipdl/error/undeclReturnType.ipdl7
1 files changed, 7 insertions, 0 deletions
diff --git a/ipc/ipdl/test/ipdl/error/undeclReturnType.ipdl b/ipc/ipdl/test/ipdl/error/undeclReturnType.ipdl
new file mode 100644
index 0000000000..2f353a1957
--- /dev/null
+++ b/ipc/ipdl/test/ipdl/error/undeclReturnType.ipdl
@@ -0,0 +1,7 @@
+//error: argument typename `FARGLEGARGLE' of message `Msg' has not been declared
+
+sync protocol undeclReturnType {
+
+child: sync Msg() returns (FARGLEGARGLE r);
+
+};