summaryrefslogtreecommitdiff
path: root/orbsvcs/tests/InterfaceRepo/Bug_2962_Regression/test.idl
blob: 2704eabe9bfcf7b01b2edcbb2bcb883849198be2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
// $Id$
#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