summaryrefslogtreecommitdiff
path: root/CIAO/tests/IDL3_to_XMI/Forward_Declared/c_nok.idl
blob: effea6d6becedc382eddb1ac6bd3cc3665087561 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
// $Id$

#ifndef C_IDL
#define C_IDL

#include "a.idl"

module N
{

    interface c1: M::a
    {
    };

    component c2 supports M::a
    {
    };

};

#endif // C_IDL