summaryrefslogtreecommitdiff
path: root/TAO/tests/IDL_Test/typeprefix.idl
blob: 0e503d5bfa90135962f7430099896093d14995c6 (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++

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