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 */
8
9public class VarargsAmbiguityCrashTest {
10    void m1() {
11        m2(null, new Exception());
12    }
13
14    void m2(Long l) {}
15
16    void m2(Exception... exception) {}
17
18    void m2(Long l, Exception... exception) {}
19}
20