blob: 4acb7ef2f09c452d0b798255e3faa71f0f575f64 [file] [log] [blame]
/*
* @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<>() {};
}
}