E2538 DEFAULT standard function not allowed for this type (Delphi)

From RAD Studio
Jump to: navigation, search

Go Up to Error and Warning Messages (Delphi)

This occurs when you give the Default function a type that is not compatible as a parameter.


program E2538;

{$APPTYPE CONSOLE}

uses
  SysUtils;

begin
  Default(Text); //E2538
  Default(File); //E2538
end.