public void test_1_14_AnnotationReference() throws Exception {
Set<AnnotationHandle> refs = pm.getAnnotationReferences(convertName(Refs.Referenced.class));
Method m = Refs.class.getMethod("referencer");
MethodHandle mh = new MethodHandle(m);
Reference ref = m.getAnnotation(Reference.class);
AnnotationHandle expected = new AnnotationHandle(ref, mh, "refs");
Assert.assertTrue(refs.contains(expected));
}