Delphi Error – E2506 Method of parameterized type declared in interface section must not use local symbol ‘%s’

Delphi Compiler Error

E2506 Method of parameterized type declared in interface section must not use local symbol ‘%s’

Reason for the Error & Solution

This happens when trying to assign a literal value to a generics data field.

program E2506;

{$APPTYPE CONSOLE}

uses
  SysUtils;

type
  TRec<T> = record
  public
    class var x: Integer;
    class constructor Create;
  end;

class constructor TRec<T>.Create;
begin

  x := 4; // <-- e2506 Fix: overload the Create method to take one parameter x and assign it to the x field.
end;


begin
   Writeln('E2506 Method of parameterized type declared in interface section must not use local symbol');
end.

Share:

Leave A Reply

Your email address will not be published. Required fields are marked *

You May Also Like

Delphi Compiler Error E2313 Attribute – Known attribute cannot specify properties Reason for the Error & Solution No further information...
Delphi Compiler Error E2379 Virtual methods not allowed in record types Reason for the Error & Solution No further information...
Rodrigo , one of the long time Delphi Developer has been working on one of his personal project “Delphi IDE...