extern int $int$; interface ihello { in void hello(int i); behaviour { on hello: {} } } component helloparam { provides ihello h; requires iworld w; behaviour { on h.hello(i): w.world(i); } } interface iworld { in void world(int i); behaviour { on world: {} } }