@Test
public void test_GetMethodWithBridgeMethods() throws Exception {
registry = getTypeRegistry("reflection.bridgemethods..*");
ReloadableType targetClass = reloadableClass("reflection.bridgemethods.ClassWithBridgeMethod");
Result r = getDeclaredMethod(targetClass.getClazz(), "clone");
assertMethod("protected java.lang.Object reflection.bridgemethods.ClassWithBridgeMethod.clone()"
+ " throws java.lang.CloneNotSupportedException", r); // In the first version of the class, there's only one method and it returns object
reloadType(targetClass, "002");
r = getDeclaredMethod(targetClass.getClazz(), "clone");