summaryrefslogtreecommitdiff
path: root/TAO/tests/IDL_Test/typedef.idl
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/tests/IDL_Test/typedef.idl')
-rw-r--r--TAO/tests/IDL_Test/typedef.idl47
1 files changed, 0 insertions, 47 deletions
diff --git a/TAO/tests/IDL_Test/typedef.idl b/TAO/tests/IDL_Test/typedef.idl
deleted file mode 100644
index 01f4a1d5ba2..00000000000
--- a/TAO/tests/IDL_Test/typedef.idl
+++ /dev/null
@@ -1,47 +0,0 @@
-// $Id$
-
-// ============================================================================
-//
-// = LIBRARY
-// TAO/tests/IDL_Test
-//
-// = FILENAME
-// typedef.idl
-//
-// = DESCRIPTION
-// This file contains examples of IDL code that has
-// caused problems in the past for the TAO IDL
-// compiler. This test is to make sure the problems
-// stay fixed.
-//
-// = AUTHORS
-// Jeff Parsons <parsons@cs.wustl.edu> and TAO users.
-//
-// ============================================================================
-
-
-// Must keep unaliasing until all levels of typedef
-// are removed.
-
-// This is also a test of arrays of arrays. Once
-// upon a time, the generated CDR operators of such
-// animals wouldn't compile on all platforms.
-
-typedef char A5[5];
-
-typedef A5 C5;
-
-typedef C5 G5;
-
-typedef G5 J5;
-
-typedef J5 M5[5];
-
-typedef M5 R5;
-
-typedef R5 V5;
-
-typedef V5 Z5[5];
-
-
-