Inference: stuck expressions should not be considered ahead of target-type constraints evaluation

XMLWordPrintable

    • Type: Bug
    • Resolution: Unresolved
    • Priority: P4
    • tbd
    • Affects Version/s: 8-pool, 9
    • Component/s: tools
    • 8

      The following program should fail to compile but it doesn't:

      import java.util.*;
      import java.util.function.*;

      class ObjectTargetType {

      <T, R> R m(List<? extends R> l1, List<? extends R> l2, Function<String, R> fun) {
          return fun.apply(null);
      }

      void test(List<Class<RuntimeException>> l1, List<Class<Exception>> l2) {
          Object o = m(l1, l2, s -> String.class); // error???
      }

      }

            Assignee:
            Dan Smith
            Reporter:
            Maurizio Cimadamore
            Votes:
            0 Vote for this issue
            Watchers:
            2 Start watching this issue

              Created:
              Updated: