summaryrefslogtreecommitdiff
path: root/orbsvcs/tests/InterfaceRepo/Bug_3155_Regression/test.idl
blob: 8230f0955fb1a560285d934863390e272922187e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
// $Id$

module C1
{
  valuetype EB  // NOT abstract
  {
  };
};

module M1
{
  valuetype VT; // Forward declare
};

module M1
{
  valuetype VT :  // Full definition
   ::C1::EB
  {
    public long id;
  };
};