2007-12-01 00:00:00 +00:00
|
|
|
/*
|
2014-10-10 14:41:50 -07:00
|
|
|
* @test /nodynamiccopyright/
|
2007-12-01 00:00:00 +00:00
|
|
|
* @bug 6214959
|
2014-10-10 14:41:50 -07:00
|
|
|
* @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);
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|