The <Keyword> Keyword is Expected

Description

The Fore language specification requires the use of the specified keyword in the statement.

Troubleshooting Tips

Check the statement format. Add the required keywords.

Example

Sub UserProc;
Var
    i: Integer;
Begin
    Select Case i
        
    End Select;
End Sub UserProc;

When the specified code is compiled, the following error is displayed: The "case" keyword is expected. The specified error occurs because the Select Case selection statement must contain at least one Case block.

See also:

Compiler Messages