summaryrefslogtreecommitdiff
path: root/TAO/tests/Bug_1020_Regression/Test.idl
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/tests/Bug_1020_Regression/Test.idl')
-rw-r--r--TAO/tests/Bug_1020_Regression/Test.idl26
1 files changed, 26 insertions, 0 deletions
diff --git a/TAO/tests/Bug_1020_Regression/Test.idl b/TAO/tests/Bug_1020_Regression/Test.idl
new file mode 100644
index 00000000000..3b4828eb758
--- /dev/null
+++ b/TAO/tests/Bug_1020_Regression/Test.idl
@@ -0,0 +1,26 @@
+/**
+ * @file Test.idl
+ *
+ * $Id$
+ *
+ * @author Carlos O'Ryan <coryan@atdesk.com>
+ *
+ */
+#ifndef BUG_1020_REGRESSION_TEST_IDL
+#define BUG_1020_REGRESSION_TEST_IDL
+
+module Test
+{
+ typedef sequence<octet> Payload;
+ interface Echo
+ {
+ Payload echo_payload (in Payload data);
+ };
+
+ interface Server
+ {
+ void start_task (in Echo client);
+ };
+};
+
+#endif /* BUG_1020_REGRESSION_TEST_IDL*/