HZS1098I CHECK(IBMSDUMP,SDUMP_AUTO_ALLOCATION)
HZS1090I START TIME: 06/01/2005 13:46:28.025111
HZS1095I CHECK DATE: 20050118 CHECK SEVERITY: MEDIUM
IEAH700I IEAH700I Build level 2005.045 15:49:09.60 FC= 2 EC= 2
Error: CONTINUE not allowed
You’re trying to use continue outside a loop construction.
Fatal: Unknown compilerproc ”arg1”. Check if you use the correct run time library.
The compiler expects that the runtime library contains certain type definitions. If you see this error and you didn’t change the runtime library code, it’s very likely that the runtime library you’re using doesn’t match the compiler in use. If you changed the runtime library this error means that you removed a type which the compiler needs for internal use.
Hint: Inherited call to abstract method ignored
This message appears only in Delphi mode when you call an abstract method of a parent class via inherited;. The call is then ignored.
Error: In ISO mode, the mod operator is defined only for positive quotient
In ISO pascal, only positive values are allowed for the quotient: n mod m is only valid if m>0.