summaryrefslogtreecommitdiff
path: root/TAO/tests/IDL_Test/sequence.idl
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/tests/IDL_Test/sequence.idl')
-rw-r--r--TAO/tests/IDL_Test/sequence.idl15
1 files changed, 15 insertions, 0 deletions
diff --git a/TAO/tests/IDL_Test/sequence.idl b/TAO/tests/IDL_Test/sequence.idl
index 9c3b32da80e..3e5b9415ed9 100644
--- a/TAO/tests/IDL_Test/sequence.idl
+++ b/TAO/tests/IDL_Test/sequence.idl
@@ -21,6 +21,21 @@
#include "tao/OctetSeq.pidl"
+struct myfoostruct;
+typedef sequence<myfoostruct> myfoostructseq;
+
+struct myfoostruct
+{
+ string str_mem;
+ myfoostructseq rec_mem;
+};
+
+exception nasty
+{
+ string id;
+ myfoostruct rec_info;
+};
+
// This will produce a link error if a handcraft we have added to
// tao/OctetSeqC.h is ever removed.
typedef sequence<CORBA::OctetSeq> OctetSeqSeq;