Cyclic inheritance of a class has been detected when organizing the class hierarchy.
Change the hierarchy of the class inheritance to avoid cyclic dependence.
Class A: C
End Class A;
Class B: A
End Class B;
Class C: B
End Class C;
When the specified code is compiled, the string "Class a: c" displays the following error: The A class inherits from itself. To resolve the error, change the type, from which this class inherits, in the description of the "a" class.
See also: