summaryrefslogtreecommitdiff
path: root/python/test/Ice/scope/Test.ice
diff options
context:
space:
mode:
Diffstat (limited to 'python/test/Ice/scope/Test.ice')
-rw-r--r--python/test/Ice/scope/Test.ice26
1 files changed, 26 insertions, 0 deletions
diff --git a/python/test/Ice/scope/Test.ice b/python/test/Ice/scope/Test.ice
index fbd505e2ee4..e40116886d3 100644
--- a/python/test/Ice/scope/Test.ice
+++ b/python/test/Ice/scope/Test.ice
@@ -113,3 +113,29 @@ module Test
sequence<I*> ISeq;
}
}
+
+module Inner
+{
+
+module Test
+{
+
+module Inner2
+{
+ interface I
+ {
+ Test::S opS(Test::S s1, out Test::S s2);
+ Test::SSeq opSSeq(Test::SSeq s1, out Test::SSeq s2);
+ Test::SMap opSMap(Test::SMap s1, out Test::SMap s2);
+
+ Test::C opC(Test::C c1, out Test::C c2);
+ Test::CSeq opCSeq(Test::CSeq c1, out Test::CSeq c2);
+ Test::CMap opCMap(Test::CMap c1, out Test::CMap c2);
+
+ void shutdown();
+ }
+}
+
+}
+
+}