test/tools/javac/T8024207/FlowCrashTest.java

Wed, 30 Oct 2013 18:09:49 +0000

author
vromero
date
Wed, 30 Oct 2013 18:09:49 +0000
changeset 2173
537fa895fd74
parent 0
959103a6100f
permissions
-rw-r--r--

8027327: jar files related to test test/tools/javac/ExtDirs/ExtDirTest.java should be removed from the repo
Reviewed-by: ksrini

     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