interface ihello { in bool hello (); behaviour { on hello: reply (true); } } component second_reply { provides ihello h; behaviour { on h.hello (): { reply (true); reply (true); } } }