summaryrefslogtreecommitdiff
path: root/TAO/tests/IDL_Test/enum_in_struct.idl
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/tests/IDL_Test/enum_in_struct.idl')
-rw-r--r--TAO/tests/IDL_Test/enum_in_struct.idl43
1 files changed, 0 insertions, 43 deletions
diff --git a/TAO/tests/IDL_Test/enum_in_struct.idl b/TAO/tests/IDL_Test/enum_in_struct.idl
deleted file mode 100644
index 07e309fe5b7..00000000000
--- a/TAO/tests/IDL_Test/enum_in_struct.idl
+++ /dev/null
@@ -1,43 +0,0 @@
-// $Id$
-
-// ============================================================================
-//
-// = LIBRARY
-// TAO/tests/IDL_Test
-//
-// = FILENAME
-// enum_in_struct.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.
-//
-// ============================================================================
-
-// Tests for correct parsing and code generation for
-// both named and anonymous enums in a struct.
-
-enum UnNamed
- {
- UNNAMED_FIRST,
- UNNAMED_SECOND,
- UNNAMED_THIRD
- };
-
-struct HoldsEnum
-{
- enum Named
- {
- NAMED_FIRST,
- NAMED_SECOND,
- NAMED_THIRD
- } named_enum;
-
- UnNamed unnamed_enum;
-};
-