publicclassAmbiguousClassReference4CE{/** @testcase PR#701 PUREJAVA CE for ambiguous type reference (two inner types) * see also testcase PR#631 */publicstaticvoidmain(String[]args){thrownewError("Expecting compiler error, not compile/run");}staticclassFoo{}// CE: "duplicate type name"staticinterfaceFoo{}// CE: "duplicate type name"}