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.idl50
1 files changed, 0 insertions, 50 deletions
diff --git a/TAO/tests/IDL_Test/typedef.idl b/TAO/tests/IDL_Test/typedef.idl
deleted file mode 100644
index 4846c5ef676..00000000000
--- a/TAO/tests/IDL_Test/typedef.idl
+++ /dev/null
@@ -1,50 +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.
-
-typedef char A5[5];
-
-typedef A5 C5;
-
-typedef C5 G5;
-
-typedef G5 J5;
-
-// Haven't found a way to make HP/UX compilers
-// happy with the code generated for an array
-// containing a typedef'd array yet. There may
-// be others so, for now...
-#if 0
-
-typedef J5 M5[5];
-
-typedef M5 R5;
-
-typedef R5 V5;
-
-typedef V5 Z5[5];
-
-#endif /* 0 */
-
-