/** @testcase PR#567 no error for cyclic class inheritance if no classes implement the interfaces */publicclassCyclicClassInheritance{publicstaticvoidmain(Stringargs[]){thrownewError("not to be run - error case ");}}classAextendsB{A();voida(){}}classBextendsA{B();voidb(){}}