mirror of
https://github.com/openjdk/jdk.git
synced 2025-09-20 11:04:34 +02:00

Allow diamond inference in combination with anonymous class instance creation Co-authored-by: Maurizio Cimadamore <maurizio.cimadamore@oracle.com> Reviewed-by: mcimadamore, vromero
16 lines
393 B
Java
16 lines
393 B
Java
/*
|
|
* @test /nodynamiccopyright/
|
|
* @bug 8062373
|
|
* @summary Test that inaccessible vararg element type triggers an error during diamond inferred anonymous class instance creation.
|
|
* @compile/fail/ref=Neg18.out Neg18.java -XDrawDiagnostics
|
|
*/
|
|
|
|
import java.util.Collections;
|
|
import pkg.Neg18_01;
|
|
|
|
class Neg18 {
|
|
|
|
public static void main(String[] args) {
|
|
new Neg18_01<>() {};
|
|
}
|
|
}
|