The <DirectiveName> Directive is Invalid for <MemberName>

Description

The Fore language specification does not allow the use of this directive with the specified type member.

Troubleshooting Tips

Change the description of the type member so that it contains only valid directives.

Example

Delegate Change(Sender: Object);

Class TestClass: Object
    Final Event OnChange: Change;
End Class TestClass;

When the specified code is compiled, the following error is displayed: The Final directive is invalid for event. To resolve the error, delete the Final directive from the event description.

See also:

Compiler Messages