blob: 5c18842261c6cbf1cff15c3a58c0e22eaa437308 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
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");
}
}
|