summaryrefslogtreecommitdiffstats
path: root/ipc/ipdl/test/ipdl/ok/Punion_Namespaced.ipdl
diff options
context:
space:
mode:
Diffstat (limited to 'ipc/ipdl/test/ipdl/ok/Punion_Namespaced.ipdl')
-rw-r--r--ipc/ipdl/test/ipdl/ok/Punion_Namespaced.ipdl19
1 files changed, 19 insertions, 0 deletions
diff --git a/ipc/ipdl/test/ipdl/ok/Punion_Namespaced.ipdl b/ipc/ipdl/test/ipdl/ok/Punion_Namespaced.ipdl
new file mode 100644
index 0000000000..4108dfd4df
--- /dev/null
+++ b/ipc/ipdl/test/ipdl/ok/Punion_Namespaced.ipdl
@@ -0,0 +1,19 @@
+namespace kitties {
+
+union Socks {
+ int;
+ double;
+};
+
+} // namespace kitties
+
+
+namespace puppies {
+
+[ChildProc=any]
+protocol Punion_Namespaced {
+child:
+ async Msg(Socks s);
+};
+
+} // namespace puppies