jdk-24/test/langtools/tools/javac/scope/6225935/Estatico4.java
2023-01-17 04:43:40 +00:00

20 lines
420 B
Java

/*
* @test /nodynamiccopyright/
* @bug 6214959
* @summary Compiler fails to produce error message with ODD number of import static
* @compile/fail/ref=Estatico4.out -XDrawDiagnostics Estatico4.java
*/
import static javax.swing.JLabel.*;
import static java.awt.FlowLayout.*;
import static javax.swing.JLabel.*;
public class Estatico4 {
public static void meth() {
System.out.println(CENTER);
}
}