2007-12-01 00:00:00 +00:00
|
|
|
/*
|
2014-10-10 21:41:50 +00:00
|
|
|
* @test /nodynamiccopyright/
|
2007-12-01 00:00:00 +00:00
|
|
|
* @bug 6214959
|
2014-10-10 21:41:50 +00:00
|
|
|
* @summary Compiler fails to produce error message with ODD number of import static
|
2007-12-01 00:00:00 +00:00
|
|
|
* @author Peter von der Ah\u00e9
|
2014-10-10 21:41:50 +00:00
|
|
|
* @compile/fail/ref=T6214959.out -XDrawDiagnostics T6214959.java
|
2007-12-01 00:00:00 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
import static a.Star.*;
|
|
|
|
import static a.Ambiguous.*;
|
|
|
|
import static a.Star.*;
|
|
|
|
|
|
|
|
|
|
|
|
public class T6214959 {
|
|
|
|
{ y(); }
|
|
|
|
}
|