20 lines
430 B
Java
Raw Normal View History

2007-12-01 00:00:00 +00:00
/*
* @test /nodynamiccopyright/
2007-12-01 00:00:00 +00:00
* @bug 6214959
* @summary Compiler fails to produce error message with ODD number of import static
* @compile/fail/ref=Estatico4.out -XDrawDiagnostics Estatico4.java
2007-12-01 00:00:00 +00:00
*/
import static javax.swing.JLabel.*;
import static java.awt.FlowLayout.*;
import static javax.swing.JLabel.*;
public class Estatico4 {
public static void main(String[] s) {
System.out.println(CENTER);
}
}