interface unused { in void hello(); behaviour { on hello: {} } } interface ihello { in void hello(); behaviour { on hello: {} } } component hello_two { provides ihello h; requires iworld w; behaviour { on h.hello(): w.world(); } } component hello_world { provides ihello h; requires iworld w; behaviour { on h.hello(): w.world(); } } interface iworld { in void world(); behaviour { on world: {} } }