summaryrefslogtreecommitdiff
path: root/TAO/orbsvcs/tests/InterfaceRepo/Bug_2962_Regression/test.idl
blob: 44f6059a4a2113e6d0cb09368a50eba0e5d06d70 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#ifndef __IFR_NESTING_ARRAY_TEST_DEFINED
#define __IFR_NESTING_ARRAY_TEST_DEFINED

typedef short ShortArray_1[1];
struct MyStruct
{
  ShortArray_1 innerArray;             // Must NOT be [2] to show up the problem.
};

typedef MyStruct arrayOfStruct[2]; // Must be arrayOfStruct[2] to pass client.cpp test

#endif