assertNull(other);
Method m = Proxied.class.getDeclaredMethod("method");
some = container.resolveTypedAnnotation(m, Some.class);
assertNull(some);
some = (Some)container.resolveAnnotation(m, Some.class);
assertNull(some);
other = container.resolveTypedAnnotation(m, Other.class);
assertNotNull(other);
other = (Other)container.resolveAnnotation(m, Other.class);
assertNotNull(other);