org.aspectj/tests/new/AmbiguousClassReference2CE.java

15 lines
499 B
Java
Raw Normal View History

2002-12-16 19:51:06 +01:00
import java.sql.Array;
import java.lang.reflect.Array; // ERR: importing same name different types
public class AmbiguousClassReference2CE {
/** @testcase PR#701 PUREJAVA CE for ambiguous type reference (imports)
* see also testcase PR#631 */
public static void main(String[] args) {
int[] gh = new int[5];
Array.getLength(gh); // bug: expect ~ambiguous~ not "no method getLength..."
throw new Error("Expecting compiler error, not compile/run");
}
}