public void testInvokeConstructor2() throws Throwable {
MethodHandle handle = Binder
.from(Constructable.class, String.class, String.class)
.invokeConstructorQuiet(LOOKUP, Constructable.class);
assertEquals(MethodType.methodType(Constructable.class, String.class, String.class), handle.type());
assertEquals(new Constructable("foo", "bar"), (Constructable) handle.invokeExact("foo", "bar"));
}
@Test
public void testGetField() throws Throwable {