2015-03-30 17:09:14 +05:30
|
|
|
/*
|
|
|
|
* @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 {
|
|
|
|
|
2023-01-17 04:43:40 +00:00
|
|
|
public static void meth() {
|
2015-03-30 17:09:14 +05:30
|
|
|
new Neg18_01<>() {};
|
|
|
|
}
|
|
|
|
}
|