summaryrefslogtreecommitdiff
path: root/CIAO/CCF/Test/IDL2/LexicalAnalyzer/Coverage.idl
blob: a29dde465d23142318aa0478511f5741d1a1ffe5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
// file      : CCF/Test/IDL2/LexicalAnalyzer/Coverage.idl
// author    : Boris Kolpackov <boris@dre.vanderbilt.edu>
// cvs-id    : $Id$

// This file is supposed to cover an IDL2 lexical structure and intended
// for IDL2 lexer regression testing.
//

abstract interface FA;

abstract interface A
{
  void foo (in long l, out boolean b, inout FA fa);
};

module M
{
  interface I
  {
  };
};

local interface L : ::A, M::I
{
};