}
public void testTransientField() throws Exception
{
TypeDomain domain = new TypeDomain();
domain.addTypeModel(G.class);
SerializationContext context = new SerializationContext(domain);
G g = new G();
g.a = "foo";
g.b = new Thread();
g = context.clone(g);