*/
@Test
public void closure1() throws Exception {
String t = "simple.BasicWithClosure";
String c = "simple.BasicWithClosure$_run_closure1";
TypeRegistry r = getTypeRegistry(t + "," + c);
ReloadableType ctype = r.addType(c, loadBytesForClass(c));
ReloadableType rtype = r.addType(t, loadBytesForClass(t));
result = runUnguarded(rtype.getClazz(), "run");
assertEquals("Executing:hello!", result.stdout);
rtype.loadNewVersion("2",
retrieveRename(t, t + "2", "simple.BasicWithClosure2$_run_closure1:simple.BasicWithClosure$_run_closure1"));