Specifications
734 H2INC Error Messages
Filename: LMAETAPA.DOC Project: MASM Environment and Tools
Template: MSGRIDA1.DOT Author: Nobody Last Saved By: Mike Eddy
Revision #: 136 Page: 734 of 50 Printed: 10/09/00 02:49 PM
HI2065 identifier : undefined
An attempt was made to use an identifier that was not defined.
HI2066 cast to function type is illegal
An object was cast to a function type, which is illegal.
However, it is legal to cast an object to a function pointer.
HI2067 cast to array type is illegal
An object was cast to an array type.
HI2068 illegal cast
A type used in a cast operation was not legal for this expression.
HI2069 cast of void term to nonvoid
The void type was cast to a different type.
HI2070 illegal sizeof operand
The operand of a sizeof expression was not an identifier or a type name.
HI2071 identifier : illegal storage class
The given storage class cannot be used in this context.
HI2072 identifier : initialization of a function
An attempt was made to initialize a function.
HI2043 illegal break
A break statement is legal only within a do, for, while, or switch statement.
HI2044 illegal continue
A continue statement is legal only within a do, for, or while statement.
HI2045 identifier : label redefined
The label appeared before more than one statement in the same function.
HI2046 illegal case
The keyword case may appear only within a switch statement.
HI2047 illegal default
The keyword default may appear only within a switch statement.
HI2048 more than one default
A switch statement contained more than one default label.
HI2049 case value value already used
The case value was already used in this switch statement.