test/tools/javac/T8024207/FlowCrashTest.java

Mon, 04 Jul 2016 13:06:03 -0700

author
asaha
date
Mon, 04 Jul 2016 13:06:03 -0700
changeset 3255
b4bd1c5fbbe3
parent 0
959103a6100f
permissions
-rw-r--r--

Added tag jdk8u111-b03 for changeset 386c8bc6dd3e

     1 /*
     2  * @test  /nodynamiccopyright/
     3  * @bug 8024207
     4  * @summary javac crash in Flow$AssignAnalyzer.visitIdent
     5  * @compile/fail/ref=FlowCrashTest.out -XDrawDiagnostics FlowCrashTest.java
     6  */
     8 import java.util.*;
     9 import java.util.stream.*;
    11 public class FlowCrashTest {
    12     static class ViewId { }
    14     public void crash() {
    16         Map<ViewId,String> viewToProfile = null;
    17         new TreeMap<>(viewToProfile.entrySet().stream()
    18                       .collect(Collectors.toMap((vid, prn) -> prn,
    19                                                 (vid, prn) -> Arrays.asList(vid),
    20                                                 (a, b) -> { a.addAll(b); return a; })));
    22     }
    23 }

mercurial