summaryrefslogtreecommitdiff
path: root/CIAO/tests/IDL3/Connectors/incorrect_consumes.idl
blob: 6d10649266b74aaead1ac5a821702a7cfb46fc44 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#include <Components.idl>

eventtype foo_event
{
};

interface A
{
  long do_something ();
};

connector B
{
  provides A x;
  uses A y;
  consumes foo_event c_foo;
};