summaryrefslogtreecommitdiff
path: root/TAO/tests/ICMG_Any_Bug/Test.idl
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/tests/ICMG_Any_Bug/Test.idl')
-rw-r--r--TAO/tests/ICMG_Any_Bug/Test.idl18
1 files changed, 18 insertions, 0 deletions
diff --git a/TAO/tests/ICMG_Any_Bug/Test.idl b/TAO/tests/ICMG_Any_Bug/Test.idl
new file mode 100644
index 00000000000..70c1c911dd0
--- /dev/null
+++ b/TAO/tests/ICMG_Any_Bug/Test.idl
@@ -0,0 +1,18 @@
+//
+// $Id$
+//
+
+module Test
+{
+ interface HelloWorld
+ {
+ string get_string ();
+ };
+
+ interface Hello
+ {
+ HelloWorld get_helloworld ();
+
+ oneway void shutdown ();
+ };
+};