The identifier of a method not implemented in the basic class is specified after the INHERITED keyword.
Check the identifier of the called method. The visibility scope of the method may forbid for it to be called from child classes.
Class BaseClass: Object
End Class BaseClass;
Class TestClass: BaseClass
Sub Test;
Begin
Inherited BaseTest;
End Sub Test;
End Class TestClass;
When the specified code is compiled, the following error is displayed: The BaseTest method is not found in basic class. To resolve the error, describe the BaseTest method in the BaseClass class.
See also: