}
@Test
public void check_bootstrap_varargs() throws Throwable {
CallSite callSite = ClosureReferenceSupport.bootstrap(lookup(), "concat", methodType(MethodHandle.class), KLASS, 0, 1);
assertThat(callSite.type(), is(methodType(MethodHandle.class)));
Object result = callSite.dynamicInvoker().invoke();
assertThat(result, instanceOf(MethodHandle.class));
MethodHandle handle = (MethodHandle) result;