2 //=============================================================================
6 * This file contains examples of IDL code that has
7 * caused problems in the past for the TAO IDL
8 * compiler. This test is to make sure the problems
12 * @author Jeff Parsons <parsons@cs.wustl.edu> and TAO users.
14 //=============================================================================
17 // The IDL compiler used to generated code that would not compile if
18 // an IDL file contained nothing but an array definition, but only if
19 // the Any insertion/extraction operators were generated. They
20 // depended upon the definition of CORBA::SystemException (in
21 // particular, CORBA::MARSHAL), but the array impl template file in
22 // TAO (tao/AnyTypeCode/Any_Array_Impl_T.cpp) did not have an #include
23 // for "tao/SystemException.h". Now it does.
25 typedef char TEST_TYPE
[10];