1
0
espelhamento de https://github.com/eclipse-aspectj/aspectj.git sincronizado 2024-08-27 05:54:38 +02:00
org.aspectj/tests/new/CyclicClassInheritance.java
2002-12-16 18:51:06 +00:00

13 linhas
328 B
Java

/** @testcase PR#567 no error for cyclic class inheritance if no classes implement the interfaces */
public class CyclicClassInheritance {
public static void main( String args[] ) {
throw new Error("not to be run - error case ");
}
}
class A extends B { A(); void a(){} }
class B extends A { B(); void b(){} }