diff options
Diffstat (limited to 'ipc/ipdl/test/ipdl/ok/union_Namespaced.ipdl')
-rw-r--r-- | ipc/ipdl/test/ipdl/ok/union_Namespaced.ipdl | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/ipc/ipdl/test/ipdl/ok/union_Namespaced.ipdl b/ipc/ipdl/test/ipdl/ok/union_Namespaced.ipdl new file mode 100644 index 000000000..02f86f9de --- /dev/null +++ b/ipc/ipdl/test/ipdl/ok/union_Namespaced.ipdl @@ -0,0 +1,18 @@ +namespace kitties { + +union Socks { + int; + double; +}; + +} // namespace kitties + + +namespace puppies { + +protocol union_Namespaced { +child: + async Msg(Socks s); +}; + +} // namespace puppies |