test/tools/javac/T8029569/VarargsAmbiguityCrashTest.java

Wed, 24 Sep 2014 11:38:26 -0700

author
katleman
date
Wed, 24 Sep 2014 11:38:26 -0700
changeset 2562
ed1a48bedfa8
parent 2392
73cbce40a149
child 2525
2eb010b6cb22
permissions
-rw-r--r--

Added tag jdk8u40-b07 for changeset 2fa3858a281f

     1 /*
     2  * @test /nodynamiccopyright/
     3  * @bug 8029569 8037379
     4  * @summary internal javac cast exception when resolving varargs ambiguity
     5  * fix for JDK-8029569 doesn't cover all possible cases
     6  * @compile/fail/ref=VarargsAmbiguityCrashTest.out -XDrawDiagnostics VarargsAmbiguityCrashTest.java
     7  */
     9 public class VarargsAmbiguityCrashTest {
    10     void m1() {
    11         m2(null, new Exception());
    12     }
    14     void m2(Long l) {}
    16     void m2(Exception... exception) {}
    18     void m2(Long l, Exception... exception) {}
    19 }

mercurial