Specifications

Error! Style not defined. 733
Filename: LMAETAPA.DOC Project: MASM Environment and Tools
Template: MSGRIDA1.DOT Author: Nobody Last Saved By: Mike Eddy
Revision #: 136 Page: 733 of 49 Printed: 10/09/00 02:49 PM
HI2042 signed/unsigned keywords mutually exclusive
The keywords signed and unsigned were both used in a single declaration, as in the
following example:
unsigned signed int i;
HI2056 illegal expression
An expression was illegal because of a previous error, which may not have produced an
error message.
HI2057 expected constant expression
The context requires a constant expression.
HI2058 constant expression is not integral
The context requires an integral constant expression.
HI2059 syntax error : token
The token caused a syntax error.
HI2060 syntax error : end-of-file found
The compiler expected at least one more token.
Some causes of this error include:
u Omitting a semicolon (;), as in
int *p
u Omitting a closing brace (}) from the last function, as in
main()
{
HI2061 syntax error : identifier identifier
The identifier caused a syntax error.
HI2062 type type unexpected
The compiler did not expect the given type to appear here, possibly because it already
had a required type.
HI2063 identifier : not a function
The given identifier was not declared as a function, but an attempt was made to use it as
a function.
HI2064 term does not evaluate to a function
An attempt was made to call a function through an expression that did not evaluate to a
function pointer.