interface IFunctionCall { in void evt(); out void act(); behaviour { on evt: func(); void func() { act; } } }