Identifier is Expected

Description

The statement requires an element identifier (class, interface, variable, and so on) as its operand.

Troubleshooting Tips

Specify a recognizable identifier and check the sequence of the operands.

Example

Sub Main;
Var
    i: Integer;
Begin
    i := Integer.;
End Sub Main;

When the specified code is compiled, the string i := Integer.; displays the following error: Identifier is expected. To resolve the error, add an allowed method identifier, for example, Parse.

See also:

Compiler Messages