!7 sinterface MyInterface { S hello(); } sclass MyImpl { S hello() { ret "hello"; } } cprint { start-thread { MyInterface proxy = proxy(MyImpl, MyInterface); assertEqualsVerbose("hello", proxy.hello()); assertEqualsVerbose("hello", call(proxy, "hello")); } }