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

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

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

#endif