summaryrefslogtreecommitdiff
path: root/TAO/tests/IDL_Test/struct.idl
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/tests/IDL_Test/struct.idl')
-rw-r--r--TAO/tests/IDL_Test/struct.idl22
1 files changed, 22 insertions, 0 deletions
diff --git a/TAO/tests/IDL_Test/struct.idl b/TAO/tests/IDL_Test/struct.idl
new file mode 100644
index 00000000000..e339c502ab8
--- /dev/null
+++ b/TAO/tests/IDL_Test/struct.idl
@@ -0,0 +1,22 @@
+// $Id$
+// Double forward declared struct test, created by Martin Corino <mcorino@remedy.nl>
+
+module Test
+{
+ struct S3;
+
+ struct S1
+ {
+ string hello;
+ };
+
+ struct S3;
+
+ typedef sequence<S3> TS3Seq;
+
+ struct S3
+ {
+ TS3Seq m_seq;
+ boolean m_has_more;
+ };
+};