org.aspectj/tests/new/AmbiguousClassReference3CE.java

15 lines
429 B
Java
Raw Normal View History

2002-12-16 19:51:06 +01:00
public class AmbiguousClassReference3CE {
/** @testcase PR#701 PUREJAVA CE for ambiguous type reference (two type declarations)
* see also testcase PR#631 */
public static void main(String[] args) {
throw new Error("Expecting compiler error, not compile/run");
}
}
class Foo {} // expect: "duplicate type name"
interface Foo {} // expect: "duplicate type name"
class Bar {
Foo f;
}