summaryrefslogtreecommitdiff
path: root/TAO/tests/IDL_Test/Bug_2616_Regression.idl
blob: 916d4db404e9944f1474e5fdbdcc2fcc8e48dfda (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
// $Id$

// Test Bug 2616

struct AA
{
  long x;
};
struct BB
{
  AA data;
};
interface Interface1
{
  typedef BB Type;
  void do_it(in Type value);
};
interface Interface2
{
  typedef AA Type;
  void do_it(in Type value);
};