This section lists all errors that can occur when type checking is performed.
Var
A1 : Array[1..10] Of Integer;
A2 : Array[1..10] Of Integer;
Begin
A1:=A2; { This statement gives also this error, it
is due the strict type checking of pascal }
End.
|
Tenum = (a,b,e:=5);
|