summaryrefslogtreecommitdiff
path: root/ACE/TAO/tests/IDL_Test/typeprefix.idl
blob: 67e4d1ac709f5e1b2947fcf2bc9c7999dd33b0e2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
// $Id$

// Test a construct with typeprefix which failed when TAO_IDL was build
// with Intel C++ or Sun C++

module A
{
  typeprefix A "TAO";
  interface B {};
  interface C{
    void op (in B a);
  };
};
/*
module A
{
  typeprefix A "TAO";
  interface B{};
};*/