summaryrefslogtreecommitdiff
path: root/TAO/tests/IDL_Test/typeprefix.idl
blob: 5fb34afb825a224cb675ce3a4e1c8849b4a60323 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
// 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{};
};*/