summaryrefslogtreecommitdiff
path: root/TAO/tests/IDL_Test/Bug_2583_Regression.idl
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/tests/IDL_Test/Bug_2583_Regression.idl')
-rw-r--r--TAO/tests/IDL_Test/Bug_2583_Regression.idl12
1 files changed, 12 insertions, 0 deletions
diff --git a/TAO/tests/IDL_Test/Bug_2583_Regression.idl b/TAO/tests/IDL_Test/Bug_2583_Regression.idl
new file mode 100644
index 00000000000..e524981b54c
--- /dev/null
+++ b/TAO/tests/IDL_Test/Bug_2583_Regression.idl
@@ -0,0 +1,12 @@
+// $Id$
+
+// Test Bug 2583
+
+module Test {
+ local interface DynAny {};
+ struct NameDynAnyPair {
+ string id;
+ DynAny value;
+ };
+ typedef sequence<NameDynAnyPair> NameDynAnyPairSeq;
+};