Delphi Error – E2195 Cannot initialize local variables

Delphi Compiler Error

E2195 Cannot initialize local variables

Reason for the Error & Solution

The compiler disallows the use of initialized local variables.

program Produce;

  var
    j : Integer;

  procedure Show;
    var i : Integer = 151;
  begin
  end;

begin
end.

The declaration and initialization of ‘i’ in procedure ‘Show’ is illegal.

program Solve;

  var
    j : Integer;

  procedure Show;
    var i : Integer;
  begin
    i := 151;
  end;

begin
  j := 0;
end.

You can use a programmatic style to set all variables to known values.

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...