svoid test_isInstanceOfSyntheticClass() {
  testFunctionValues isInstanceOfSyntheticClass(
    (IF1) x -> x, true,
    "bla", false,
    null, false,
    new IF1 { public O get(O o) { ret o; } }, false,
  );
}