summaryrefslogtreecommitdiff
path: root/TAO/orbsvcs/tests/InterfaceRepo/Bug_3155_Regression/test.idl
blob: 19207b588622215970e1a06bf5b88655a105ae6e (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;
  };
};