summaryrefslogtreecommitdiff
path: root/modules/CIAO/tests/IDL3/Connectors/incorrect_emits.idl
blob: 19ea0403091555259662b41bb42d6336970785b0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
// $Id$

#include <Components.idl>

eventtype foo_event
{
};

interface A
{
  long do_something ();
};

connector B
{
  provides A x;
  uses A y;
  emits foo_event e_foo;
};