test/tools/javac/T8029569/VarargsAmbiguityCrashTest.java

Wed, 27 Apr 2016 01:34:52 +0800

author
aoqi
date
Wed, 27 Apr 2016 01:34:52 +0800
changeset 0
959103a6100f
child 2525
2eb010b6cb22
permissions
-rw-r--r--

Initial load
http://hg.openjdk.java.net/jdk8u/jdk8u/langtools/
changeset: 2573:53ca196be1ae
tag: jdk8u25-b17

     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