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