summaryrefslogtreecommitdiff
path: root/CIAO/tests/IDL3/Connectors/incorrect_publishes.idl
blob: 685189c6681782211cfbb5a2954e1e5c10b3d28c (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;
  publishes foo_event p_foo;
};