summaryrefslogtreecommitdiff
path: root/TAO/examples/POA/TIE/test.idl
blob: 409ca428547cd2091489ff52da7bea982b6af0a1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
// $Id$

interface A
{
  long doit();
};

module Outer
{
  interface B
    {
      long doit();
    };

  module Inner
    {
      interface C
        {
          long doit();
        };
    };
};